/* --- ESTILOS GENERALES --- */
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}

/* --- SECCIÓN HERO --- */
.hero-section {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px; /* Equivalente a space-y-7 */
    text-align: center;
    color: white;
    padding: 1rem;
}

.hero-title {
    font-size: 30px;
    font-weight: 600;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.hero-delivery {
    font-size: 1.25rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.hero-phone {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fde047; /* text-yellow-300 */
}

.cta-button {
    padding: 1.25rem;
    background-color: #22c55e; /* bg-green-500 */
    color: white;
    font-weight: 700;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #16a34a; /* hover:bg-green-600 */
    transform: scale(1.05);
}


/* --- SECCIÓN BENEFICIOS --- */
.benefits-section {
    padding: 2.5rem;
    background-attachment: fixed;
    background-position: center;
}

.section-title-white {
    font-size: 1.5rem;
    color: white;
    text-align: center;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.benefit-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    padding: 1.5rem;
    text-align: center;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.benefit-card p {
    font-size: 1rem;
    font-weight: 300;
    margin: 0;
}

/* --- SECCIÓN PRODUCTOS --- */
.products-section {
    padding: 0.75rem;
    background-color: #f3f4f6; /* bg-gray-100 */
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.section-title {
    font-size: 1.5rem;
    text-align: center;
    font-weight: 700;
    margin-top: 2.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.product-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    padding: 2.5rem;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    max-width: 100%;
    height: auto;
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.product-card p {
    font-weight: 400;
    margin: 0 0 1rem 0;
}

.product-button {
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    background-color: #f97316; /* bg-orange-500 */
    color: white;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.product-button:hover {
    background-color: #ea580c; /* hover:bg-orange-600 */
}

.order-button-container {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0;
}

/* --- SECCIÓN TESTIMONIOS --- */
.testimonial-section {
    padding: 3.75rem 1rem;
    background-color: #e0f2fe; /* bg-sky-200 */
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial-container {
    max-width: 56rem; /* max-w-4xl */
    margin: 0 auto;
    text-align: center;
    transition: transform 0.2s ease;
}

.testimonial-container:hover {
    transform: scale(1.05);
}

.testimonial-container blockquote {
    background-color: white;
    padding: 1.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    margin: 0;
}

.testimonial-container p {
    font-size: 1.125rem;
    font-weight: 300;
    margin: 0 0 1rem 0;
}

.testimonial-container cite {
    font-family: monospace;
    font-size: 1.125rem;
    font-style: normal;
}

/* --- FOOTER --- */
footer {
    padding: 1.5rem;
    background-color: #0ea5e9; /* bg-sky-500 */
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    color: white;
}

.footer-content p {
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.25rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}


/* --- REGLAS RESPONSIVAS (Media Queries) --- */
/* sm: 640px */
@media (min-width: 640px) {
    .hero-title { font-size: 1.875rem; }
    .hero-subtitle, .hero-delivery { font-size: 1.5rem; }
    .benefits-section { padding: 7.5rem; }
    .testimonial-section { padding: 10rem; }
    .footer-content p, .footer-links { font-size: 1.125rem; }
}

/* md: 768px */
@media (min-width: 768px) {
    .hero-title { font-size: 2.25rem; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title { font-size: 2.25rem; }
}

/* lg: 1024px */
@media (min-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .section-title, .section-title-white, .testimonial-section h2 { font-size: 2.25rem; }
    .benefits-section { padding: 10rem; }
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .benefit-card h3 { font-size: 1.5rem; }
    .benefit-card p { font-size: 1.125rem; }
}