🌿 Sobre Nosotros
Somos Yedaia's Bubble Soap, creadores de jabones artesanales estéticos formulados con ingredientes naturales puros.
Con más de 18 años de experiencia, elaboramos cada barra con precisión, conocimiento y amor para cuidar tu piel.
* { margin: 0; padding: 0; box-sizing: border-box; } :root { --negro: #1a1a1a; --dorado: #d4af37; --dorado-claro: #e8c547; --verde: #2d5016; --verde-claro: #3d6b1f; --blanco: #f8f8f8; --gris-suave: #e8e8e8; } html { scroll-behavior: smooth; } body { font-family: 'Georgia', serif; color: var(--negro); background-color: var(--blanco); line-height: 1.8; letter-spacing: 0.3px; } /* CONTENEDOR PRINCIPAL */ .container { max-width: 900px; margin: 0 auto; padding: 40px 30px; } /* TÍTULO */ h1 { font-size: 2.5em; color: var(--verde); margin-bottom: 10px; font-weight: 600; text-align: center; } .subtitle { text-align: center; color: var(--dorado); font-size: 1.1em; font-style: italic; margin-bottom: 50px; } /* SECCIÓN DE UBICACIONES */ .shipping-region { margin-bottom: 60px; } .region-header { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; padding-bottom: 15px; border-bottom: 3px solid var(--dorado); } .region-flag { font-size: 3em; } .region-header h2 { font-size: 1.8em; color: var(--negro); margin: 0; } /* TABLA DE ENVÍO */ .shipping-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); border-radius: 8px; overflow: hidden; } .shipping-table thead { background: linear-gradient(135deg, var(--negro) 0%, #2a2a2a 100%); color: var(--blanco); } .shipping-table th { padding: 20px; text-align: left; font-size: 1.05em; font-weight: 600; letter-spacing: 0.5px; } .shipping-table td { padding: 18px 20px; border-bottom: 1px solid var(--gris-suave); font-size: 1em; } .shipping-table tbody tr { background: var(--blanco); transition: background 0.3s ease; } .shipping-table tbody tr:hover { background: rgba(212, 175, 55, 0.08); } .shipping-table tbody tr:last-child td { border-bottom: none; } /* COLUMNA DE RANGO */ .range-cell { color: var(--verde); font-weight: 600; } /* COLUMNA DE PRECIO */ .price-cell { text-align: right; font-size: 1.15em; font-weight: 600; color: var(--dorado); } .price-free { background: rgba(45, 80, 22, 0.15); color: var(--verde); padding: 8px 16px; border-radius: 20px; display: inline-block; font-weight: 700; text-transform: uppercase; font-size: 0.95em; letter-spacing: 1px; } /* SECCIÓN DE PROCESO */ .process-section { background: linear-gradient(135deg, rgba(45, 80, 22, 0.05), rgba(212, 175, 55, 0.05)); padding: 40px; border-radius: 8px; margin: 60px 0; border-left: 5px solid var(--verde); } .process-section h3 { font-size: 1.8em; color: var(--verde); margin-bottom: 30px; text-align: center; } .process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; } .step { text-align: center; position: relative; } .step-number { width: 60px; height: 60px; background: var(--dorado); color: var(--negro); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8em; font-weight: 700; margin: 0 auto 15px; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); } .step h4 { font-size: 1.1em; color: var(--verde); margin-bottom: 10px; font-weight: 600; } .step p { font-size: 0.95em; color: var(--negro); line-height: 1.6; } /* INFORMACIÓN ADICIONAL */ .info-box { background: var(--negro); color: var(--blanco); padding: 30px; border-radius: 8px; margin-bottom: 30px; position: relative; overflow: hidden; } .info-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--dorado), var(--verde)); } .info-box h4 { color: var(--dorado); margin-bottom: 15px; font-size: 1.3em; font-weight: 600; } .info-box p { font-size: 1em; line-height: 1.8; margin-bottom: 12px; } .info-box ul { list-style: none; padding-left: 0; } .info-box li { padding-left: 25px; margin-bottom: 10px; position: relative; } .info-box li::before { content: '✓'; position: absolute; left: 0; color: var(--dorado); font-weight: bold; } /* NOTA IMPORTANTE */ .important-note { background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(45, 80, 22, 0.1)); border-left: 5px solid var(--dorado); padding: 25px; border-radius: 5px; margin: 40px 0; } .important-note h4 { color: var(--verde); margin-bottom: 15px; font-size: 1.2em; font-weight: 600; } .important-note p { font-size: 1em; color: var(--negro); line-height: 1.8; } /* CONTACTO */ .contact-section { background: linear-gradient(135deg, var(--verde), var(--verde-claro)); color: var(--blanco); padding: 40px; border-radius: 8px; text-align: center; margin-top: 60px; } .contact-section h3 { font-size: 1.6em; margin-bottom: 15px; font-weight: 600; } .contact-section p { font-size: 1.05em; margin-bottom: 20px; line-height: 1.8; } .contact-link { display: inline-block; background: var(--dorado); color: var(--negro); padding: 12px 30px; text-decoration: none; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; margin: 0 10px; font-size: 1em; } .contact-link:hover { background: var(--blanco); color: var(--verde); transform: scale(1.05); } /* RESPONSIVO */ @media (max-width: 768px) { .container { padding: 30px 20px; } h1 { font-size: 2em; } .subtitle { font-size: 1em; } .region-header { flex-direction: column; align-items: flex-start; gap: 10px; } .region-flag { font-size: 2em; } .region-header h2 { font-size: 1.5em; } .shipping-table th, .shipping-table td { padding: 15px 12px; font-size: 0.9em; } .price-cell { font-size: 1em; } .process-steps { grid-template-columns: 1fr; gap: 20px; } .process-section { padding: 30px 20px; } .process-section h3 { font-size: 1.4em; } .contact-section { padding: 30px 20px; } .contact-section h3 { font-size: 1.3em; } } /* ANIMACIÓN DE ENTRADA */ .shipping-region { animation: fadeInUp 0.6s ease forwards; opacity: 0; } .shipping-region:nth-child(1) { animation-delay: 0.1s; } .shipping-region:nth-child(2) { animation-delay: 0.3s; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
Entregas rápidas y seguras a Puerto Rico y USA
Mismos precios para Puerto Rico y Estados Unidos
| Total de Orden | Costo de Envío |
|---|---|
| $0.01 - $25.00 | $8.00 |
| $25.01 - $40.00 | $15.00 |
| $40.01 - $74.99 | $18.00 |
| $75.00 en adelante | GRATIS |
Procesamos tu compra de 1 a 2 días laborables
Preparamos tu orden con cuidado artesanal
Recibes tracking por email cuando empacamos
Tu paquete llegará entre 2 a 7 días laborales, dependiendo del destino
Los tiempos de entrega no incluyen fines de semana ni días feriados. En tiempos festivos, el tiempo de entrega puede verse afectado.
Guide Package Protection protege tu orden contra pérdida, daño, robo y más. Es la mejor forma de asegurar que tu paquete llega seguro.
Recomendación: Para una protección completa de tu orden, te recomendamos encarecidamente que añadas Guide Package Protection en el checkout.
Por favor, ten en cuenta los siguientes puntos importantes:
Si tienes dudas sobre tu pedido o no recibiste el código de rastreo, contáctanos. Estamos aquí para ayudarte.
📧 Contacta Aquí 💬 WhatsApp