/* --- Reseteo Básico y Variables de Estilo --- */
:root {
    --primary-color: #4ECDC4;
    /* Turquesa del logo, un poco más vibrante */
    --secondary-color: #EAECEF;
    /* Gris claro suave */
    --accent-color: #FFC107;
    /* Dorado sutil para acentos, si es necesario */
    --text-color: #333;
    /* Gris oscuro para el texto principal */
    --dark-text-color: #2C3E50;
    /* Un gris azulado oscuro para encabezados */
    --light-bg: #FFFFFF;
    --font-headings: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- Encabezado y Navegación --- */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 130px;
    /* AJUSTADO: Tamaño del logo aumentado */
    width: auto;
}


header nav a {
    text-decoration: none;
    color: var(--dark-text-color);
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: var(--primary-color);
}

/* --- Botón Principal (Call to Action) --- */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #FFF;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
    /* Sombra basada en primary-color */
}

.cta-button:hover {
    background-color: #3CA099;
    /* Un turquesa un poco más oscuro */
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.5);
}

/* --- Secciones Generales --- */
section {
    padding: 80px 0;
    text-align: center;
}

section h3 {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-text-color);
}

/* --- Sección Hero --- */
.hero {
    /* ACTUALIZADO: Imagen del envase sin bananas para el fondo */
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/hero-ariadna-background.jpg');
    background-size: cover;
    background-position: center;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 100px 0;
}

.hero-content {
    max-width: 800px;
}

.hero h2 {
    font-family: var(--font-headings);
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFF;
    /* Aseguramos que el título sea blanco en el hero */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    font-weight: 300;
}

/* --- Servicios --- */
.services {
    background-color: var(--secondary-color);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.service-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    /* Para organizar el contenido y la imagen */
    flex-direction: column;
    /* La imagen arriba, el texto abajo */
    align-items: center;
    /* Centrar contenido dentro de la tarjeta */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card h4 {
    font-family: var(--font-headings);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    text-align: center;
    /* Centrar el título del servicio */
}

/* --- Estilo para imágenes de servicio dentro de las tarjetas --- */
.service-card .service-image {
    max-width: 100%;
    /* Asegura que no se desborde */
    height: 180px;
    /* Altura fija para uniformidad */
    width: 100%;
    object-fit: cover;
    /* Recorta la imagen para que cubra el espacio */
    border-radius: 8px;
    /* Bordes ligeramente redondeados */
    margin-bottom: 20px;
    /* Espacio debajo de la imagen */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Sombra sutil */
}

/* --- Sobre Nosotros --- */
.about .container {
    max-width: 900px;
}

/* Estilo para imagen en About Us, si decides usarla */
.about .about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
}


/* --- Garantía --- */
.guarantee {
    background-color: var(--secondary-color);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.guarantee-item h4 {
    color: var(--dark-text-color);
    margin-bottom: 10px;
}

/* --- Contacto --- */
.contact-info {
    margin: 30px 0;
    font-size: 1.1rem;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* --- Footer --- */
footer {
    background-color: var(--dark-text-color);
    color: #FFF;
    text-align: center;
    padding: 40px 0;
}

.social-links a {
    color: #FFF;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 10px;
}

/* --- Diseño Responsive --- */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    h3 {
        font-size: 2rem;
    }

    .hero {
        min-height: 60vh;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    header .container {
        flex-direction: column;
        gap: 15px;
    }

    header nav a {
        margin: 0 10px;
    }

    /* La regla específica para .logo-img en móvil fue eliminada 
       para que herede los 100px del estilo general. */
}