:root {
    --primary-color: #97364F;
    --secondary-color: #AE5E79;
    --light-color: #f9f9f9;
    --dark-color: #333;
    --gray-color: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header y Navegación con Hamburguesa */
header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);

}

.logo img {
       width: 250px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.nav-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.nav-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Hero Section dividido como en la imagen */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 100px 0 60px;
    background-color: var(--light-color);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text {
    padding-right: 30px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-color);
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
    object-fit: contain;
    padding: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Resto del CSS */
.features {
    padding: 80px 0;
    background-color: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--gray-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.feature-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(151, 54, 79, 0.3);
}

.feature-btn i {
    font-size: 1rem;
}

.about {
    padding: 80px 0;
    background-color: var(--light-color);
}

.about h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--gray-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    font-weight: bold;
}

.testimonial-position {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: #f0f0f0;
}

/* Estilos para el footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-contact {
    text-align: center;
}

.social-media {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
}

.social-icon {
    color: #fff;
    font-size: 1.8rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon:hover i.fa-instagram {
    color: #E1306C;
}

.social-icon:hover i.fa-facebook {
    color: #1877F2;
}

.social-icon:hover i.fa-youtube {
    color: #FF0000;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        padding-right: 0;
        order: 2;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-image {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-text {
        order: 2;
    }

    .about-text p {
        text-align: left;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        padding-top: 80px;
        z-index: 1000;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .nav-btn {
        display: block;
        text-align: center;
        margin: 10px 0;
    }
    
    .hero {
        padding: 80px 0 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }

    section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .features h2,
    .about h2,
    .testimonials h2,
    .gallery h2,
    .cta h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .feature-item h3 {
        font-size: 1.3rem;
    }

    section {
        padding: 4rem 0;
    }

    html {
        scroll-padding-top: 70px; /* Ajuste para móviles */
    }

    .about {
        padding: 60px 0;
    }

    .about h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 30px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-content {
        gap: 20px;
    }

    section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .features h2,
    .about h2,
    .testimonials h2,
    .gallery h2,
    .cta h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .feature-item h3 {
        font-size: 1.2rem;
    }

    section {
        padding: 3rem 0;
    }

    .about {
        padding: 40px 0;
    }

    .about h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .about-content {
        gap: 30px;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .formacion-diferencial-content img {
        max-width: 100vw;
    }
    .formacion-diferencial-content {
        padding-left: 0;
        padding-right: 0;
    }
    .formacion-diferencial-content > div:last-child {
        width: 100% !important;
        min-width: 0 !important;
    }
}

/* Estilos para la galería */
.gallery {
    padding: 4rem 0;
    background-color: #f9f9f9;
}


.gallery h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

/* Ajustes generales para títulos */
section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Ajustes generales */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Ajusta este valor según la altura de tu header */
}

/* Estilos para las secciones */
section {
    padding: 5rem 0;
    position: relative;
}

.hero {
    padding: 6rem 0;
    background-color: #fff;
}

.features {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.about {
    padding: 5rem 0;
    background-color: #fff;
}

.gallery {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.testimonials {
    padding: 5rem 0;
    background-color: #fff;
}

.cta {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: #fff;
}

/* Botón de WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
}

.whatsapp-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-btn i {
    font-size: 35px;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn i {
        font-size: 30px;
    }
}

/* Servicios Especializados */
.specialized-services {
    padding: 80px 0;
    background-color: var(--light-color);
}

.specialized-services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: var(--dark-color);
}

.specialized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.specialized-item {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.specialized-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.specialized-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.specialized-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.specialized-item:hover .specialized-icon {
    transform: scale(1.1);
}

.specialized-icon i {
    font-size: 2rem;
    color: white;
}

.specialized-item h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: bold;
}

.specialized-item p {
    color: var(--gray-color);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Responsive para servicios especializados */
@media (max-width: 768px) {
    .specialized-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .specialized-item {
        padding: 30px 20px;
    }
    
    .specialized-icon {
        width: 60px;
        height: 60px;
    }
    
    .specialized-icon i {
        font-size: 1.5rem;
    }
    
    .specialized-item h3 {
        font-size: 1.2rem;
    }
    
    .specialized-item p {
        font-size: 1rem;
    }
}

/* Chef Profile Section */
.chef-profile {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.chef-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.chef-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chef-image {
    position: relative;
    text-align: center;
    animation: slideInLeft 1s ease-out 0.3s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.chef-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(151, 54, 79, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.chef-image img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    border-radius: 20px;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.chef-image:hover img {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(151, 54, 79, 0.3);
}

.chef-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(151, 54, 79, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.chef-badge i {
    color: #ffd700;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.chef-info {
    padding: 20px 0;
    animation: slideInRight 1s ease-out 0.6s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.chef-header {
    margin-bottom: 30px;
    text-align: left;
}

.chef-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); }
    to { text-shadow: 2px 2px 20px rgba(151, 54, 79, 0.3); }
}

.chef-header h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.chef-titles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.title-badge {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.title-badge:nth-child(1) { animation-delay: 0.9s; }
.title-badge:nth-child(2) { animation-delay: 1.1s; }
.title-badge:nth-child(3) { animation-delay: 1.3s; }

.title-badge:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 20px rgba(151, 54, 79, 0.2);
}

.chef-description {
    line-height: 1.8;
}

.chef-intro {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(151, 54, 79, 0.05), rgba(174, 94, 121, 0.05));
    border-left: 4px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
    position: relative;
    animation: fadeInUp 0.8s ease-out 1.5s both;
}

.chef-intro::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 3rem;
    color: var(--primary-color);
    font-family: serif;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.chef-expertise {
    margin: 40px 0;
    animation: fadeInUp 0.8s ease-out 1.7s both;
}

.chef-expertise h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.chef-expertise > p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    line-height: 1.7;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.expertise-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(151, 54, 79, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
}

.expertise-item:nth-child(1) { animation-delay: 2.0s; }
.expertise-item:nth-child(2) { animation-delay: 2.2s; }
.expertise-item:nth-child(3) { animation-delay: 2.4s; }
.expertise-item:nth-child(4) { animation-delay: 2.6s; }

.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(151, 54, 79, 0.15);
}

.expertise-item:hover::before {
    transform: scaleX(1);
}

.expertise-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
    transition: transform 0.3s ease;
}

.expertise-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

.expertise-item h5 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.expertise-item p {
    font-size: 0.95rem;
    color: var(--gray-color);
    line-height: 1.6;
}

.chef-experience {
    margin: 40px 0;
    padding: 25px;
    background: linear-gradient(135deg, rgba(151, 54, 79, 0.05), rgba(174, 94, 121, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(151, 54, 79, 0.1);
    animation: fadeInUp 0.8s ease-out 2.8s both;
}

.chef-experience h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.chef-experience p {
    font-size: 1.05rem;
    color: var(--gray-color);
    line-height: 1.7;
}

.chef-cta {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 3.0s both;
}

.chef-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
    animation: float 15s ease-in-out infinite;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.chef-btn {
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.chef-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.chef-btn:hover::before {
    left: 100%;
}

.chef-btn:hover {
    background: var(--dark-color);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.chef-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.chef-btn:hover i {
    transform: scale(1.2);
}

/* Responsive Design for Chef Profile */
@media (max-width: 992px) {
    .chef-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .chef-header {
        text-align: center;
    }
    
    .chef-header h2 {
        font-size: 2rem;
    }
    
    .chef-titles {
        justify-content: center;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .chef-profile {
        padding: 60px 0;
    }
    
    .chef-header h2 {
        font-size: 1.8rem;
    }
    
    .chef-header h3 {
        font-size: 1.1rem;
    }
    
    .chef-intro {
        font-size: 1.1rem;
        padding: 15px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expertise-item {
        padding: 20px;
    }
    
    .chef-cta {
        padding: 25px 20px;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .chef-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .chef-header h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .chef-header h3 {
        font-size: 1rem;
    }
    
    .title-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .chef-intro {
        font-size: 1rem;
        padding: 15px 10px;
    }
    
    .chef-expertise h4 {
        font-size: 1.3rem;
    }
    
    .chef-experience h4 {
        font-size: 1.2rem;
    }
    
    .expertise-item {
        padding: 15px;
    }
    
    .expertise-item i {
        font-size: 1.5rem;
    }
    
    .expertise-item h5 {
        font-size: 1rem;
    }
    
    .expertise-item p {
        font-size: 0.9rem;
    }
}

.chef-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.chef-btn:hover i {
    transform: scale(1.2);
}

.chef-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.chef-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.chef-btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.chef-btn-secondary i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.chef-btn-secondary:hover i {
    transform: scale(1.2);
}

/* Asesoramiento Page Styles */
.hero-asesoramiento {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-asesoramiento::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots-asesoramiento" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-asesoramiento)"/></svg>');
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.hero-asesoramiento-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-asesoramiento-text {
    padding: 40px;
}

.hero-asesoramiento-text h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-asesoramiento-text h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
    opacity: 0.9;
}

.hero-asesoramiento-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
    opacity: 0.9;
}

.hero-asesoramiento-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-asesoramiento-image {
    position: relative;
    text-align: center;
}

.hero-asesoramiento-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.chef-credentials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.credential-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}



.credential-item i {
    color: #ffd700;
    font-size: 1.2rem;
}

.asesoramiento-intro {
    padding: 80px 0;
    background: white;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.servicios-asesoramiento {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.servicios-asesoramiento h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.servicio-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(151, 54, 79, 0.1);
    position: relative;
    overflow: hidden;
}

.servicio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.servicio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(151, 54, 79, 0.15);
}

.servicio-item:hover::before {
    transform: scaleX(1);
}

.servicio-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.servicio-icon i {
    font-size: 2rem;
    color: white;
}

.servicio-item h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.servicio-item p {
    font-size: 1rem;
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.servicio-beneficios {
    list-style: none;
    padding: 0;
}

.servicio-beneficios li {
    padding: 8px 0;
    color: var(--dark-color);
    position: relative;
    padding-left: 25px;
}

.servicio-beneficios li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.experiencia-internacional {
    padding: 80px 0;
    background: white;
}

.experiencia-internacional h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.experiencia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.experiencia-text p {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.paises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.pais-item {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pais-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(151, 54, 79, 0.3);
}

.pais-item i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.pais-item span {
    font-size: 0.9rem;
    font-weight: 600;
}

.proceso-asesoramiento {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.proceso-asesoramiento h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

.proceso-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(151, 54, 79, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.step-item p {
    font-size: 1rem;
    color: var(--gray-color);
    line-height: 1.6;
}

.cta-asesoramiento {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-asesoramiento h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-asesoramiento p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1rem;
}

/* Responsive Design for Asesoramiento Page */
@media (max-width: 992px) {
    .hero-asesoramiento-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-asesoramiento-text h1 {
        font-size: 2.2rem;
    }
    
    .experiencia-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .servicios-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .formacion-diferencial-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero-asesoramiento {
        padding: 100px 0 60px;
    }
    
    .hero-asesoramiento-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-asesoramiento-text h2 {
        font-size: 1.2rem;
    }
    
    .hero-asesoramiento-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .servicios-grid {
        grid-template-columns: 1fr;
    }
    
    .proceso-steps {
        grid-template-columns: 1fr;
    }
    
    .paises-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .formacion-diferencial h2 {
        font-size: 1.8rem;
    }
    
    .formacion-diferencial-content {
        padding: 20px;
    }
    
    .formacion-diferencial-content li {
        padding: 12px;
    }
    
    .credential-item {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .credential-item i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-asesoramiento-text h1 {
        font-size: 1.5rem;
    }
    
    .intro-content h2 {
        font-size: 1.8rem;
    }
    
    .servicios-asesoramiento h2,
    .experiencia-internacional h2,
    .proceso-asesoramiento h2,
    .cta-asesoramiento h2,
    .formacion-diferencial h2 {
        font-size: 1.8rem;
    }
    
    .servicio-item {
        padding: 20px;
    }
    
    .step-item {
        padding: 20px;
    }
    
    .formacion-diferencial-content {
        padding: 15px;
    }
    
    .formacion-diferencial-content li {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .formacion-diferencial-content img {
        max-width: 180px;
    }
    
    .credential-item {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .credential-item i {
        font-size: 0.9rem;
    }
}

.formacion-diferencial {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.formacion-diferencial h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.formacion-diferencial h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.formacion-diferencial-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(151, 54, 79, 0.1);
}

.formacion-diferencial-content ul {
    list-style: none;
    padding: 0;
}

.formacion-diferencial-content li {
    margin-bottom: 1.5rem;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.formacion-diferencial-content li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(151, 54, 79, 0.1);
}

.formacion-diferencial-content li i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.formacion-diferencial-content img {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.formacion-diferencial-content img:hover {
    transform: scale(1.05);
}

.formacion-diferencial-content p {
    font-size: 1.1em;
    margin-top: 0.5rem;
    color: var(--gray-color);
    line-height: 1.6;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .img-responsive {
      max-width: 450px;
    }


@media (min-width: 992px) {
  .img-responsive {
    max-width: 450px;
  }
}}

/* ====== Formación Diferencial Responsive ====== */
.formacion-diferencial-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
  justify-content: center;
}
.formacion-diferencial-img {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
  max-width: 600px;
}
.img-formacion-responsive {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  display: block;
}
.formacion-diferencial-lista {
  flex: 1 1 320px;
  min-width: 250px;
  max-width: 600px;
}
.formacion-diferencial-lista ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.formacion-diferencial-lista li {
  margin-bottom: 1.3rem;
  font-size: 1.13em;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.formacion-diferencial-lista i {
  font-size: 1.4em;
}
.formacion-diferencial-desc {
  font-size: 1.08em;
  margin-top: 0.5rem;
}
@media (max-width: 900px) {
  .formacion-diferencial-flex {
    flex-direction: column;
    gap: 2rem;
  }
  .formacion-diferencial-img, .formacion-diferencial-lista {
    max-width: 100%;
  }
  .img-formacion-responsive {
    max-width: 90vw;
  }
}
@media (max-width: 600px) {
  .formacion-diferencial-flex {
    gap: 1.2rem;
  }
  .img-formacion-responsive {
    max-width: 100vw;
    border-radius: 10px;
  }
  .formacion-diferencial-lista li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2em;
  }
  .formacion-diferencial-lista .icono-titulo {
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin-bottom: 0.2em;
  }
  .formacion-diferencial-lista i,
  .formacion-diferencial-lista strong {
    color: var(--primary-color) !important;
  }
  .formacion-diferencial-lista strong {
    display: inline;
    font-size: 1.08em;
    margin-bottom: 0;
  }
}

.formacion-diferencial-lista .icono-titulo {
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin-bottom: 0.3em;
}
.formacion-diferencial-lista i,
.formacion-diferencial-lista strong {
  color: var(--primary-color) !important;
}
.formacion-diferencial-lista i {
  font-size: 2em;
  min-width: 38px;
}
.formacion-diferencial-lista strong {
  font-size: 1.22em;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 6px rgba(151,54,79,0.07);
  display: inline;
}
.formacion-diferencial-lista .texto-descriptivo {
  margin-top: 0.2em;
  display: block;
  color: #5a4632;
  font-size: 1em;
}
@media (max-width: 600px) {
  .formacion-diferencial-lista .icono-titulo {
    gap: 0.5em;
    margin-bottom: 0.2em;
  }
  .formacion-diferencial-lista i {
    font-size: 1.2em;
    min-width: 24px;
  }
  .formacion-diferencial-lista strong {
    font-size: 1.08em;
  }
  .formacion-diferencial-lista .texto-descriptivo {
    font-size: 0.98em;
  }
}

.formacion-diferencial-caja {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(151,54,79,0.10);
  border: 1.5px solid rgba(151,54,79,0.10);
  padding: 2.2em 2em 1.2em 2em;
  margin-bottom: 1.5em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .formacion-diferencial-caja {
    padding: 1.2em 0.7em 0.7em 0.7em;
    max-width: 100%;
  }
}