* {
    margin: 0;
    padding: 0;
}
/* -------------------------------------- */
/* Estilos del Header */
/* -------------------------------------- */
header {
    background-color: white;
    padding: 15px 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin: 0;
    box-sizing: border-box;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1250px;
    margin: 0 auto;
}

/* ========== LOGO ========== */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.85;
}

.logo {
    height: 60px;
    width: auto;
}

/* ========== NAVEGACIÓN ========== */
nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

nav a:hover {
    color: #C7698D;
}

/* ========== DROPDOWN SERVICIOS ========== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.dropdown-toggle:hover {
    color: #C7698D;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Dropdown menu desktop */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: white;
    min-width: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: #333;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #F5F1E8;
    color: #C7698D;
    padding-left: 30px;
}

/* Hover solo funciona en desktop */
@media screen and (min-width: 769px) {
    .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

/* ========== BOTÓN CONTACTO ========== */
.btn-contacto {
    background-color: #C7698D;
    color: white !important;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #C7698D;
    display: inline-block;
}

.btn-contacto:hover {
    background-color: white;
    color: #C7698D !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(199, 105, 141, 0.3);
}

/* ========== BOTÓN HAMBURGUESA (oculto en escritorio) ========== */
.menu-toggle {
    display: none;
}

.menu-overlay {
    display: none;
}





/* -------------------------------------- */
/* Estilos del Banner */
/* -------------------------------------- */
.sobre-mi {
    width: 100%;
    position: relative;
    margin: 0px auto 0;
    box-sizing: border-box;
}

/* Parte superior con imagen del pollo */
.sobre-mi-hero {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(to bottom, #ffffff 0%, #a0cae5 50%, #194D6E 100%);
}

.imagen-parrilla {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Sombra oscura SOLO en el centro (donde está "Sobre mí") */
.overlay-oscuro {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    height: 60%;
    background: radial-gradient(ellipse at center, 
        rgba(0, 0, 0, 0.75) 0%, 
        rgba(21, 22, 23, 0.5) 40%,
        rgba(12, 14, 14, 0.3) 70%,
        transparent 95%);
    z-index: 2;
}

/* Texto "Sobre mí" encima */
.sobre-mi-texto-hero {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 0 20px;
}

.sobre-mi-texto-hero h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.sobre-mi-texto-hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Sección Mi Historia (parte inferior) */
.mi-historia-section {
    position: relative;
    padding: 0px 20px;
    display: flex;
    justify-content: center;
    z-index: 4;
    background: white;
}

.mi-historia-card {
    background: white;
    border-radius: 20px;
    padding: 50px 60px;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    margin-top: -100px;
}

.mi-historia-card h2 {
    color: #2c5f7c;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 40px;
}

.mi-historia-contenido {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.mi-historia-texto p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.mi-historia-texto .cita {
    font-style: italic;
    color: #2c5f7c;
    font-size: 1.15rem;
    margin-top: 30px;
    font-weight: 500;
}

.mi-historia-imagen img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    filter: grayscale(100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}










/* -------------------------------------- */
/* Estilos del Experiencia */
/* -------------------------------------- */
.experiencia {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    background-image: url('/imagenes/sobre_mi/Experiencia\ bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    box-sizing: border-box;
}

.experiencia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.experiencia-container {
    position: relative;
    z-index: 2;
    max-width: 1250px;
    margin: 0 auto;
}

/* Grid de 3 columnas */
.experiencia-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Estilos de tarjetas */
.exp-card {
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

/* Animaciones escalonadas */
.exp-card:nth-child(1) {
    animation: fadeInUp 0.8s ease 0.1s forwards;
}

.exp-card:nth-child(2) {
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.exp-card:nth-child(3) {
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.exp-card:nth-child(4) {
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.exp-card:nth-child(5) {
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.exp-card:nth-child(6) {
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.exp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Tarjeta Header (Experiencia) */
.card-header {
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-header h2 {
    font-size: 3.5rem;
    color: #2c4d5c;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.card-header p {
    font-size: 1.05rem;
    color: #2c4d5c;
    line-height: 1.7;
}

/* Tarjetas claras */
.card-light {
    background: transparent;
    border: 2px solid #2c4d5c;
}

.card-light h3 {
    color: #2c4d5c;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.card-light p {
    color: #2c4d5c;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Tarjetas oscuras */
.card-dark {
    background: #5a7d8f;
    border: none;
}

.card-dark h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.card-dark p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.7;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* -------------------------------------- */
/* Estilos de galeria de fotos */
/* -------------------------------------- */
.galeria-section {
    padding: 40px 40px;
    background: transparent;
}

.galeria-titulo {
    text-align: center;
    color: #3a6fa8;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
}

/* ===== CONTENEDOR CON FADE ===== */
.galeria-wrapper {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

/* Cada fase se superpone en el mismo lugar */
.galeria-fase {
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
}

/* La fase activa es visible e interactuable */
.galeria-fase.activa {
    opacity: 1;
    pointer-events: all;
    position: relative;
}

.galeria-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 310px;
}

.bloque {
    width: 310px;
    border-radius: 12px;
    overflow: hidden;
    background: #ccc;
    flex-shrink: 0;
}

.bloque-1 { height: 465px; }
.bloque-2 { height: 175px; }
.bloque-3 { height: 278px; }
.bloque-4 { height: 278px; }
.bloque-5 { height: 175px; }

.bloque video,
.bloque img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== VIDEO CLICKEABLE ===== */
.video-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.video-link video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ícono de enlace al hacer hover en el video */
.video-link::after {
    content: "▶  Ver en red social";
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 0.75rem;
    font-family: Georgia, serif;
    padding: 6px 14px;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.video-link:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== INDICADORES DE FASE (puntitos) ===== */
.galeria-indicadores {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicador {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c0bdb5;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.indicador.activo {
    background: #3a6fa8;
    transform: scale(1.3);
}







/* -------------------------------------- */
/* === Sección "Formulario Contacto" === */
/* -------------------------------------- */
.contacto {
    width: 100%;
    padding: 100px 20px;
    overflow: visible; /* NUEVO: permitir que elementos salgan del section */
    box-sizing: border-box;
}

.contacto-wrapper {
    max-width: 1325px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: visible; /* NUEVO: permitir que elementos salgan del wrapper */
}

/* Bloque Azul - NO SE MODIFICA (mantener como está) */
.contacto-formulario {
    background: #496d7f;
    padding: 50px 60px;
    border-radius: 25px 0 0 25px;
    flex: 0 0 60%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.contacto-formulario h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.form-contacto {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-row-full {
    display: grid;
}

.form-contacto input {
    padding: 14px 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-contacto input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.form-contacto input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.btn-cta {
    align-self: flex-start;
    padding: 12px 32px;
    background: transparent;
    border: 2px solid white;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.btn-cta:hover {
    background: white;
    color: #496d7f;
    transform: translateX(5px);
}

.btn-cta .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-cta:hover .arrow {
    transform: translateX(3px);
}

/* NUEVO: Bloque Rosado a la derecha */
.contacto-info-rosado {
    position: relative;
    flex: 1;
    margin-left: -50px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    overflow: visible; /* CAMBIO: permitir que la imagen salga */
}

/* Textura de fondo rosada */
.textura-rosada {
    position: absolute;
    width: 110%; /* CAMBIO: más grande para que salgan los bordes */
    height: 110%; /* CAMBIO: más grande para que salgan los bordes */
    object-fit: contain; /* CAMBIO: de cover a contain para no recortar */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* NUEVO: centrar la imagen */
}

/* Contenido sobre la textura */
.info-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 40px 60px;
}

/* Cada item de información */
.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Iconos de correo y WhatsApp */
.info-icono {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Texto de información */
.info-texto h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.info-texto p {
    color: white;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 300;
}
/* ===== AJUSTES ADICIONALES PARA LANDSCAPE EN MÓVILES ===== */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .contacto {
        padding: 50px 15px;
    }

    .contacto-info-rosado {
        min-height: 250px;
    }

    .info-content {
        gap: 25px;
        padding: 30px;
    }
}



/* -------------------------------------- */
/* === Sección "Footer" === */
/* -------------------------------------- */
.footer {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.footer-main {
    /*background-color: #F5F1E8;*/
    padding: 40px 50px;
}

.footer-container {
    max-width: 1325px;
    margin: 0 auto;
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* -------------------------------------- */
/* COLUMNA IZQUIERDA - INFO */
/* -------------------------------------- */
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Logo y Redes Sociales en la misma línea */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

/* Redes Sociales al lado del logo */
.footer-socials {
    display:flex;
    gap: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    /*border: 2px solid #333;*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 7px;
}

.social-link:hover {
    background-color: #333;
    transform: translateY(-3px);
}

.social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.social-link:hover img {
    filter: brightness(0) invert(1);
}

.footer-descripcion {
    color: #666;
    font-size: 26px;
    line-height: 1.7;
    max-width: 400px;
    font-style: italic;
}

/* -------------------------------------- */
/* COLUMNAS DE NAVEGACIÓN */
/* -------------------------------------- */
.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-left: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-column a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-column a:hover {
    color: #C7698D;
    padding-left: 5px;
}

/* -------------------------------------- */
/* FOOTER INFERIOR - CENTRADO */
/* -------------------------------------- */
.footer-bottom {
    background-color: #B8B8B8;
    padding: 5px 50px;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.footer-terms a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-terms a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-copyright {
    color: #333;
    font-size: 14px;
}














/* -------------------------------------- */
/* TABLETS (entre 768px y 1024px) */
/* -------------------------------------- */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    * {
        box-sizing: border-box;
    }


    /* -------------------------------------- */
    /* Estilos del Header */
    /* -------------------------------------- */
    header {
        padding: 12px 30px;
    }

    .logo {
        height: 50px;
    }

    nav {
        gap: 25px;
    }

    nav a {
        font-size: 15px;
    }

    .btn-contacto {
        padding: 10px 22px;
        font-size: 15px;
    }






    /* -------------------------------------- */
    /* Estilos del Banner */
    /* -------------------------------------- */
    .sobre-mi {
        margin: 60px auto 0;
    }

    /* Parte superior con imagen del pollo */
    .sobre-mi-hero {
        height: 500px;
    }

    .imagen-parrilla {
        height: 120%;
    }

    /* Sombra oscura */
    .overlay-oscuro {
        width: 70%;
        height: 65%;
    }

    /* Texto "Sobre mí" */
    .sobre-mi-texto-hero {
        max-width: 600px;
        padding: 0 30px;
    }

    .sobre-mi-texto-hero h1 {
        font-size: 3.2rem;
        margin-bottom: 18px;
        letter-spacing: 2px;
    }

    .sobre-mi-texto-hero p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Sección Mi Historia */
    .mi-historia-card {
        padding: 40px 45px;
        margin-top: -80px;
    }

    .mi-historia-card h2 {
        font-size: 2.4rem;
        margin-bottom: 35px;
    }

    .mi-historia-contenido {
        gap: 40px;
    }

    .mi-historia-texto p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .mi-historia-texto .cita {
        font-size: 1.1rem;
        margin-top: 25px;
    }

    .mi-historia-imagen img {
        border-radius: 12px;
    }






    /* -------------------------------------- */
    /* Estilos de galeria de fotos */
    /* -------------------------------------- */
    .galeria-section {
        padding: 30px 20px;
    }

    .galeria-titulo {
        font-size: 1.4rem;
        margin-bottom: 22px;
    }

    /* Columnas más angostas para caber en ~1024px */
    .galeria-col {
        width: 200px;
        gap: 10px;
    }

    .bloque {
        width: 200px;
        border-radius: 10px;
    }

    /* Alturas reducidas ~65% respecto al escritorio */
    .bloque-1 { height: 300px; }
    .bloque-2 { height: 113px; }
    .bloque-3 { height: 177px; }
    .bloque-4 { height: 177px; }
    .bloque-5 { height: 113px; }

    .galeria-fase {
        gap: 10px;
    }

    .galeria-indicadores {
        margin-top: 16px;
        gap: 8px;
    }

    .indicador {
        width: 8px;
        height: 8px;
    }




    




    /* -------------------------------------- */
    /* === Sección "Formulario Contacto" === */
    /* -------------------------------------- */
    .contacto {
        padding: 80px 15px;
    }

    .contacto-wrapper {
        flex-direction: column;
        align-items: center;
    }

    /* Bloque azul en tablets */
    .contacto-formulario {
        border-radius: 25px 25px 0 0;
        flex: none;
        width: 100%;
        max-width: 700px;
        padding: 45px 50px;
    }

    .contacto-formulario h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .form-contacto {
        gap: 16px;
    }

    .form-contacto input {
        padding: 13px 18px;
        font-size: 0.9rem;
    }

    .btn-cta {
        padding: 11px 28px;
        font-size: 0.95rem;
    }

    /* Bloque rosado en tablets */
    .contacto-info-rosado {
        margin-left: 0;
        margin-top: -40px;
        width: 100%;
        max-width: 700px;
        min-height: 350px;
    }

    .textura-rosada {
        width: 105%;
        height: 105%;
    }

    .info-content {
        gap: 40px;
        padding: 50px 50px 40px;
    }

    .info-texto h3 {
        font-size: 1.1rem;
    }

    .info-texto p {
        font-size: 0.95rem;
    }

    .info-icono {
        width: 35px;
        height: 35px;
    }


    /* -------------------------------------- */
    /* === Sección "Footer" === */
    /* -------------------------------------- */
    .footer-main {
        padding: 50px 40px;
    }
    
    .footer-container {
        gap: 60px;
    }
    
    .footer-links {
        gap: 40px;
        padding-left: 20px;
    }
    
    .footer-column {
        gap: 15px;
    }
    
    .footer-column a {
        font-size: 15px;
    }
    
    .footer-descripcion {
        font-size: 14px;
        max-width: 350px;
    }
    
    .footer-bottom {
        padding: 18px 40px;
    }
}

