
:root {
    --text-dark: #000000;
    --text-muted: #555555;
    --brand-gold: #9b7003;        /* Dorado principal unificado */
    --brand-gold-hover: #8f6f1a;  /* Dorado más oscuro para efectos hover */
    --card-bg: #fbf9f6;           /* Fondo cálido para tarjetas */
    --font-title: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Plus Jakarta Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: #ffffff;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000; /* Base del Navbar */
}

.logo img {
    height: 65px;
    display: block;
}

.menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: white;
    font-size: 13px;
    transition: .3s ease;
}

.menu a:hover,
.menu a.active {
    color: var(--brand-gold) !important;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: var(--brand-gold);
}
.cc-status-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

.cc-status-message.status-error {
    background-color: rgba(239, 68, 68, 0.1); 
    border: 1px solid #ef4444;                 
    color: #f87171;                           
}

.cc-status-message.status-success {
    background-color: rgba(34, 197, 94, 0.1);  
    border: 1px solid #22c55e;                
    color: #4ade80;                           
}


@media screen and (max-width: 768px) {
    .navbar {
        padding: 0 20px; 
    }

   
    .menu-toggle {
        display: block;
        z-index: 1002; 
    }

    
    .menu {
        position: fixed;
        top: 80px; 
        right: -100%; 
        width: 70%; 
        height: calc(100vh - 80px);
        background: #000000 !important; 
        display: flex !important;
        flex-direction: column !important; 
        align-items: center;
        padding-top: 50px;
        gap: 40px; 
        transition: right 0.4s ease-in-out; 
        box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.5);
        z-index: 1001; 
    }

    .menu a {
        font-size: 16px;
        display: block;
        width: 100%;
        text-align: center;
        color: white !important;
    }

    .menu.open {
        right: 0 !important; 
        opacity: 1 !important;
        visibility: visible !important;
    }
}

.hero {
    margin-top: 80px; 
    min-height: 90vh; 
    background-image: url('../img/banner.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-content h1 {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 6vw, 5.4rem); 
    line-height: 1.1; 
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content span {
    color: var(--brand-gold);
}

.hero-content p {
    margin-bottom: 30px;
    font-size: clamp(1rem, 2vw, 1.4rem);
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 13px;
    transition: .3s ease;
}

.btn-gold {
    background: var(--brand-gold);
    color: white;
}
.btn-todos {
    background: var(--brand-gold);
    color: white;
    margin-top: 30px;
}

.btn-todos:hover{
    background: var(--brand-gold-hover);
}

.btn-gold:hover {
    background: var(--brand-gold-hover);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .6);
    color: white;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .1);
}

.features-section {
    position: relative;
    padding: 70px 20px;
    width: 100%;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header h2 .highlight {
    color: var(--brand-gold);
}

.section-header .subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.icon-container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    color: var(--brand-gold);
    margin-bottom: 25px;
}

.icon-container svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}


.servicios {

    max-width: 1600px;
    background-color: black;
    margin-top: 1px;
    
    
}

   .ccs-services {
    padding: 70px 20px;
    max-width: 1250px;
    margin: 0 auto;
    width: 100%;
    background-color: black;
    
    
    
}

.ccs-services-header {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 1px;
}

.ccs-services-header h2 {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: white;
}

.ccs-services-header span {
    color: var(--brand-gold);
}

.ccs-services-header p {
    color: white;
    margin-top: 10px;
    font-size: 1.15rem;
    font-weight: 300;
}

.ccs-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ccs-service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 290px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ccs-service-card img {
    width: 100;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.5s ease;
    position: center;
}

.ccs-service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 70%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.ccs-service-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 2;
    color: white;
}

.ccs-service-content h3 {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.2;
}

.ccs-service-card:hover img {
    transform: scale(1.06);
}
.todos-servicios {
    margin-top: 30px;
    text-align: center;
}


.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px; 
    height: 55px;
    background-color: var(--brand-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(143, 111, 26, 0.3);
    transition: transform 0.2s ease, background-color 0.3s;
    z-index: 999;
}

.floating-chat:hover {
    transform: scale(1.08);
    background-color: var(--brand-gold-hover);
}

.floating-chat svg {
    width: 24px;
    height: 24px;
}

.circulo-cta{
    background: var(--brand-gold);
    padding: 60px 20px; /* antes 120px */
    text-align: center;
}

.circulo-cta-content{
    max-width: 1000px;
    margin: 0 auto;
}

.circulo-cta h2{
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 4vw, 4rem); /* más pequeño */
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
}

.circulo-cta p{
    max-width: 900px;
    margin: 0 auto 35px;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 300;
}

.circulo-cta-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px; 
    background: #fff;
    color: var(--brand-gold);
    text-decoration: none;
    border-radius: 999px;
    font-size: 1.1rem;
    transition: .3s ease;
}
.circulo-cta-btn3{
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 30px; 
    background: #fff;
    color: var(--brand-gold);
    text-decoration: none;
    border-radius: 999px;
    font-size: .8rem;
    transition: .3s ease;
}

.circulo-cta-btn:hover{
    transform: translateY(-3px);
}



@media (max-width:768px){

    .circulo-cta{
        padding: 80px 20px;
    }

    .circulo-cta h2{
        font-size: 2.7rem;
    }

    .circulo-cta p{
        font-size: 1rem;
    }

    .circulo-cta-btn{
        width: 100%;
        max-width: 320px;
        justify-content: center;
        font-size: 1.1rem;
    }
}


.ccf-footer{
    background:#000;
    color:#fff;
    padding-top:50px;
}

.ccf-container{
    max-width:1300px;
    margin:0 auto;
    padding:0 40px 60px;
    display:grid;
    grid-template-columns:1.1fr 1fr 1.2fr 1fr;
    gap:60px;
}

.ccf-logo{
    width:120px;
    margin-bottom:30px;
}

.ccf-desc{
    color:#d5d5d5;
    font-size:15px;
    line-height:1.8;
    max-width:260px;
}

.ccf-col h3{
    font-family:var(--font-title);
    color:var(--brand-gold);
    font-size:1.2rem;
    font-weight:400;
    margin-bottom:25px;
}



.ccf-links{
    list-style:none;
}

.ccf-links li{
    margin-bottom:18px;
}

.ccf-links a{
    text-decoration:none;
    color:#ffffff;
    font-size:13px;
    transition:.3s ease;
}

.ccf-links a:hover{
    color:var(--brand-gold);
}



.ccf-contact-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:20px;
    color:#d8d8d8;
    font-size:13px;
    line-height:1.6;
}

.ccf-contact-item i{
    color:var(--brand-gold);
    font-size:20px;
    min-width:20px;
    margin-top:2px;
}



.ccf-social{
    display:flex;
    gap:14px;
    margin-bottom:35px;
}

.ccf-social a{
    width:50px;
    height:50px;
    border-radius:14px;
    background:#151515;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    font-size:24px;
    transition:.3s ease;
}

.ccf-social a:hover{
    background:var(--brand-gold);
    transform:translateY(-3px);
}


.ccf-hours{
    color:#d8d8d8;
    font-size:13px;
    line-height:1.8;
}

.ccf-hours strong{
    color:var(--brand-gold);
    font-weight:500;
}


.ccf-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:30px 20px;
    color:#bdbdbd;
    font-size:14px;
}


@media(max-width:992px){

    .ccf-container{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }

}

@media(max-width:768px){

    .ccf-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .ccf-desc{
        margin:auto;
    }

    .ccf-contact-item{
        justify-content:center;
        text-align:left;
    }

    .ccf-social{
        justify-content:center;
    }

}

.cc-about{
    background:#000;
    padding:90px 20px 70px;
    text-align:center;
}

.cc-about-container{
    max-width:1200px;
    margin:0 auto;
}

.cc-about-title{
    font-family:var(--font-title);
     font-size:60px;
    font-weight:400;
    color:#ffffff;
    line-height:1.1;
    margin-bottom:35px;
}

.cc-about-title span{
    color:var(--brand-gold);
}

.cc-about-text{
    max-width:900px;
    margin:0 auto;
    color:#ffffff;
    font-size:18px;
    font-weight:300;
    line-height:1.5;
}



.cc-symbol-section{
    background:#f7f7f7;
    padding:45px 30px;
}

.cc-symbol-container{
    max-width:1400px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:80px;
    align-items:start;
}



.cc-symbol-title{
    font-family:var(--font-title);
    font-size:2.5rem;
    font-weight:400;
    line-height:1.1;
    color:#000;
    margin-bottom:45px;
}

.cc-symbol-title span{
    color:var(--brand-gold);
   
}



.cc-symbol-list{
    list-style:none;
    padding:0;
     top:12px;

}

.cc-symbol-list li{
    position:relative;
    padding-left:32px;
    margin-bottom:32px;
    font-size:.95rem;
    color:#374151;
    line-height:1.0;
}

.cc-symbol-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:3px;
    width:12px;
    height:12px;
    border-radius:50%;
    background:var(--brand-gold);
}


.cc-symbol-card{
    background:#ece8e2;
    padding:40px;
    border-radius:18px;
     width:600px;
    height:260px;
}

.cc-symbol-card h3{
    font-family:var(--font-title);
    color:var(--brand-gold);
    font-size:1.8rem;
    font-weight:400;
    margin-bottom:30px;
    
}

.cc-symbol-quote{
    font-style:italic;
    font-size:0.5rem;
    color:#374151;
    margin-bottom:30px;
    line-height:1.7;
}
.card-texto{
    margin-top: -18px;
        line-height:0.5;
}

.cc-symbol-card p{
    color:#374151;
    font-size:1.0rem;
    line-height:1.3;
}

.seccion-corporativa .tarjeta-corporativa:hover {
    transform: translateY(-5px);
    box-shadow: 0 px 40px rgba(0, 0, 0, 0.08);
}

.seccion-corporativa .tarjeta-icono {
    margin-bottom: 10px;
    display: inline-block;
}

.seccion-corporativa .tarjeta-icono i {
    font-size: 45px; 
    color: #8a6d1c; 
    display: block;
}

.seccion-corporativa .tarjeta-titulo {
    font-family: 'Georgia', serif; 
    font-size: 28px;
    color: #001220;
    margin: 0 0 20px 0;
    font-weight: 400;
}

.seccion-corporativa .tarjeta-descripcion {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

.nv-value-icon{
    font-size:2.2rem;
    color:#a77908;
    display:block;
    margin-bottom:25px;
    line-height:1;
}


.nv-values-section{
    background:#000;
    padding:50px 30px;
}

.nv-values-container{
    max-width:1400px;
    margin:auto;
}

.nv-values-header{
    text-align:center;
    margin-bottom:70px;
}

.nv-values-header h2{
    font-size:3.5rem;
    font-weight:400;
    color:#fff;
    line-height:1.1;
    font-family:'Playfair Display', serif;
}

.nv-values-header h2 span{
    color:#a77908;
}


.nv-values-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}


.nv-value-card{
    background:linear-gradient(
        90deg,
        #1b1b1b 0%,
        #171717 100%
    );
    border:1px solid rgba(167,121,8,.25);
    border-radius:16px;

    padding:10px;
    min-height:180px;

    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;

    text-align:left;

    transition:all .35s ease;
}

.nv-value-card:hover{
    transform:translateY(-8px);
    border-color:#a77908;
    background:linear-gradient(
        90deg,
        #202020 0%,
        #1b1b1b 100%
    );
    box-shadow:0 20px 40px rgba(167,121,8,.18);
}

.nv-value-icon{
    font-size:1.5rem;
    color:#a77908;
    margin-bottom:12px;
    line-height:1;
    transition:all .35s ease;
}

.nv-value-card:hover .nv-value-icon{
    transform:scale(1.12);
    color:#c69512;
}

.nv-value-card h3{
    font-family:'Playfair Display', serif;
    font-size:1.4rem;
    font-weight:400;
    color:#fff;
    margin-bottom:10px;
    line-height:1.2;
    text-align: left;
}

.nv-value-card p{
    font-family:'Plus Jakarta Sans', sans-serif;
    font-size:.78rem;
    color:#b5b5b5;
    line-height:1.6;

    max-width:none;
    width:100%;

    margin:0;
    text-align:left;
}


.np-section{
    background:#f3f3f3;
    padding:60px 25px;
}

.np-container{
    max-width:1300px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.np-card{
    border-radius:16px;
    padding:28px 25px;
    min-height:170px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}


.np-light{
    background:#e9e5e1;
}


.np-gold{
    background:#9b7100;
    color:#fff;
}

.np-gold h2{
    color:#fff;
}


.np-card h2{
    font-family:'Playfair Display', serif;
    font-size:2rem;
    font-weight:400;
    line-height:1.1;
    margin-bottom:22px;
}


.np-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px 12px;
}

.np-tags span{
    background:#a87900;
    color:#fff;
    padding:9px 16px;
    border-radius:999px;
    font-size:0.82rem;
    font-weight:400;
    white-space:nowrap;
}


.np-gold p{
    margin:0;
    font-size:0.95rem;
    line-height:1.7;
    max-width:95%;
}


.cg-events{
    padding:70px 25px;
    background:#f5f4f2;
}

.cg-grid{
    max-width:1600px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.cg-card{
    position:relative;
    height:390px;
    border-radius:22px;
    overflow:hidden;
    cursor:pointer;
}

.cg-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}

.cg-overlay{
    position:absolute;
    inset:0;

    display:flex;
    align-items:flex-end;

    padding:30px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15),
        transparent
    );

    opacity:0;
    transition:.4s ease;
}

.cg-overlay h3{
    color:#fff;
    font-family:'Playfair Display', serif;
    font-size:2rem;
    font-weight:400;

    transform:translateY(30px);
    transition:.4s ease;
}

.cg-card:hover img{
    transform:scale(1.08);
}

.cg-card:hover .cg-overlay{
    opacity:1;
}

.cg-card:hover .cg-overlay h3{
    transform:translateY(0);
}




@media(max-width:1100px){

    .cg-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


@media(max-width:768px){

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

    .cg-card{
        height:300px;
    }

    .cg-overlay h3{
        font-size:1.6rem;
    }

}


@media(max-width:992px){

    .np-container{
        grid-template-columns:1fr;
        gap:25px;
    }

    .np-card{
        min-height:auto;
    }

    .np-card h2{
        font-size:1.8rem;
    }

}


@media(max-width:576px){

    .np-section{
        padding:45px 18px;
    }

    .np-card{
        padding:22px 20px;
    }

    .np-card h2{
        font-size:1.6rem;
        margin-bottom:18px;
    }

    .np-tags{
        gap:8px;
    }

    .np-tags span{
        font-size:0.78rem;
        padding:8px 14px;
    }

    .np-gold p{
        font-size:0.9rem;
        line-height:1.6;
    }

}


.ev-services{
    max-width:1200px;
    margin:50px auto;
    padding:0 15px;
}

.ev-service-card{
    border:1px solid #d8cdb9;
    border-radius:16px;
    overflow:hidden;
    background:#f4f1ec;
    margin-bottom:28px;
}

.ev-service-header{
    width:100%;
    border:none;
    background:#f4f1ec;
    padding:18px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
}

.ev-service-left{
    display:flex;
    align-items:center;
    gap:16px;
}

.ev-service-icon{
    color:#9b7100;
    font-size:1.7rem;
}

.ev-service-title h3{
    margin:0;
    font-family:'Playfair Display', serif;
    font-size:1.7rem;
    font-weight:400;
    line-height:1.5;
    text-align: left;
}

.ev-service-title p{
    margin:4px 0 0;
    font-size:0.92rem;
    color:#000000;
}

.ev-arrow{
    font-size:1.2rem;
    color:#9b7100;
    transition:.3s;
}

.ev-service-card.active .ev-arrow{
    transform:rotate(180deg);
}

.ev-service-content{
    max-height:0;
    overflow:hidden;
    background:#fff;
    transition:max-height .4s ease;
}

.ev-service-card.active .ev-service-content{
    max-height:250px;
}

.ev-service-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px 40px;
    padding:22px 24px;
}

.ev-item{
    position:relative;
    padding-left:18px;
    font-size:0.95rem;
    color:#33475b;
}

.ev-item::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:#9b7100;
    position:absolute;
    left:0;
    top:6px;
}



.pv-showcase{
    background:#f5f4f2;       
    padding:60px 30px;
}

.pv-header{
    text-align:center;
    max-width:950px;           
    margin:0 auto 70px;
}

.pv-header h2{
    font-family:'Playfair Display', serif;
    font-size:3.5rem;
    font-weight:400;
    color:#000;                
    line-height:1;
    margin-bottom:25px;
}

.pv-header h2 span{
    color:#a87900;
}

.pv-header p{
    font-size:1.15rem;
    line-height:1.8;            
    color:#425466;
}

.pv-header p span{
    color:#a87900;
}

.pv-grid{
    max-width:1600px;               
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.pv-card{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    height:380px;
    text-decoration:none;
}

.pv-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}

.pv-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.78) 0%,
        rgba(0,0,0,.25) 45%,
        rgba(0,0,0,0) 100%
    );
}

.pv-card h3{
    position:absolute;
    left:35px;
    bottom:28px;
    color:#fff;
    font-family:'Playfair Display', serif;
    font-size:1.7rem;
    font-weight:400;
    line-height:1.1;
    z-index:2;
}

.pv-card:hover img{
    transform:scale(1.08);
}


.cr-testimonials{
    background:#f5f4f2;
    padding:60px 20px;
}

.cr-testimonials-header{
    text-align:center;
    max-width:650px;
    margin:0 auto 35px;
}

.cr-testimonials-header h2{
    font-family:'Playfair Display', serif;
    font-size:2.3rem;
    font-weight:400;
    margin-bottom:10px;
}

.cr-testimonials-header p{
    font-size:.78rem;
    line-height:1.6;
}

.cr-testimonials-grid{
    max-width:1500px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.cr-review-card{
    background:#fffaf3;
    border:1px solid #ece5d8;
    border-radius:14px;
    padding:22px;
    position:relative;
    transition:.3s;
}

.cr-review-card:hover{
    transform:translateY(-4px);
}

.cr-stars{
    display:flex;
    gap:4px;
    color:#a87900;
    font-size:1.1rem;
    margin-bottom:14px;
}

.cr-quote-mark{
    position:absolute;
    top:15px;
    right:18px;
    display:flex;
    color:#e3d9c5;
    font-size:2.8rem;
    line-height:1;
}

.cr-review-text{
    font-size:.88rem;
    line-height:1.6;
    font-style:italic;
    color:#3f4d59;
    min-height:110px;
}

.cr-divider{
    height:1px;
    background:#fae3bb;
    margin:15px 0;
}

.cr-review-card h4{
    font-family:'Playfair Display', serif;
    font-size:1.15rem; /* antes 1.4rem */
    font-weight:400;
    margin-bottom:4px;
}

.cr-event{
    display:block;
    color:#a87900;
    font-size:.82rem; 
    margin-bottom:4px;
}

.cr-review-card small{
    font-size:.75rem; 
    color:#4d5a67;
}

/* MÓVIL */

@media(max-width:768px){

    .cr-testimonials{
        padding:60px 20px;
    }

    .cr-testimonials-header h2{
        font-size:2.5rem;
    }

    .cr-testimonials-grid{
        grid-template-columns:1fr;
    }

    .cr-review-card{
        padding:25px;
    }

    .cr-review-text{
        min-height:auto;
    }

    .cr-quote-mark{
        font-size:3.2rem;
    }

}


.cc-stats-section{
    background:#000;
    padding:70px 25px;
}

.cc-stats-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.cc-stat-item{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.cc-stat-number{
    font-family:'Plus Jakarta Sans', sans-serif;
    font-size:3.5rem;
    font-weight:300;
    color:#a87900;
    line-height:1;
    margin-bottom:12px;
}

.cc-stat-text{
    font-family:'Plus Jakarta Sans', sans-serif;
    color:#fff;
    font-size:1rem;
    font-weight:300;
    margin:0;
}


#contacto-catering{
    --cc-gold:#a67c00;
    --cc-light:#f5f3f1;
    --cc-dark:#000;
    --cc-gray:#666;

    padding:60px 20px;
    font-family:'Inter',sans-serif;
}

#contacto-catering *{
    box-sizing:border-box;
}

#contacto-catering .cc-wrapper{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:55% 45%;
    overflow:hidden;
    border-radius:20px;
}


#contacto-catering .cc-left{
    background:#f8f8f8;
    padding:30px;
}

#contacto-catering .cc-title{
    font-size:2.3rem;
    line-height:1.1;
    margin-bottom:25px;
    font-family:Georgia,serif;
    font-weight:400;
}

#contacto-catering .cc-title span{
    color:var(--cc-gold);
}

#contacto-catering .cc-item{
    display:flex;
    gap:14px;
    margin-bottom:20px;
    align-items:flex-start;
}

#contacto-catering .cc-icon{
    width:48px;
    height:48px;
    min-width:48px;
    background:var(--cc-gold);
    border-radius:12px;
    display:flex;
    justify-content:center;
    align-items:center;
}

#contacto-catering .cc-icon i{
    color:#fff;
    font-size:1.1rem;
}

#contacto-catering .cc-content h3{
    font-size:1.1rem;
    margin-bottom:4px;
    font-family:Georgia,serif;
    font-weight:500;
}

#contacto-catering .cc-content p{
    font-size:0.85rem;
    color:var(--cc-gray);
    line-height:1.5;
}



#contacto-catering .cc-schedule{
    background:var(--cc-light);
    padding:18px;
    border-radius:14px;
    margin-top:8px;
}

#contacto-catering .cc-schedule-title{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
}

#contacto-catering .cc-schedule-title i{
    color:var(--cc-gold);
    font-size:1.2rem;
}

#contacto-catering .cc-schedule-title h3{
    font-size:1.5rem;
    font-family:Georgia,serif;
    font-weight:400;
}

#contacto-catering .cc-schedule-row{
    display:flex;
    justify-content:space-between;
    padding:8px 0;
    font-size:.85rem;
    color:#444;
}


#contacto-catering .cc-social{
    margin-top:25px;
}

#contacto-catering .cc-social h3{
    font-size:1.5rem;
    font-family:Georgia,serif;
    font-weight:400;
    margin-bottom:14px;
}

#contacto-catering .cc-social-links{
    display:flex;
    gap:10px;
}

#contacto-catering .cc-social-links a{
    width:48px;
    height:48px;
    border-radius:12px;
    background:var(--cc-gold);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

#contacto-catering .cc-social-links a:hover{
    transform:translateY(-3px);
}

#contacto-catering .cc-social-links i{
    color:#fff;
    font-size:1.1rem;
}



#contacto-catering .cc-right{
    background:#000;
    color:#fff;
    padding:30px;
}

#contacto-catering .cc-right h2{
    font-size:2rem;
    font-family:Georgia,serif;
    font-weight:400;
    margin-bottom:10px;
}

#contacto-catering .cc-right p{
    font-size:.9rem;
    line-height:1.6;
    color:#ddd;
    margin-bottom:22px;
}

#contacto-catering .cc-form-group{
    margin-bottom:12px;
}

#contacto-catering .cc-form-group label{
    display:block;
    margin-bottom:6px;
    font-size:.8rem;
    font-weight:500;
}

#contacto-catering .cc-form-group input,
#contacto-catering .cc-form-group select,
#contacto-catering .cc-form-group textarea{
    width:100%;
    background:#111;
    border:1px solid #333;
    border-radius:10px;
    color:#fff;
    padding:0 14px;
    font-size:.85rem;
}

#contacto-catering .cc-form-group input,
#contacto-catering .cc-form-group select{
    height:44px;
}

#contacto-catering .cc-form-group textarea{
    height:100px;
    padding-top:12px;
    resize:none;
}

#contacto-catering .cc-form-group input:focus,
#contacto-catering .cc-form-group select:focus,
#contacto-catering .cc-form-group textarea:focus{
    outline:none;
    border-color:var(--cc-gold);
}

#contacto-catering .cc-btn{
    width:100%;
    height:48px;
    border:none;
    border-radius:10px;
    background:var(--cc-gold);
    color:#fff;
    font-size:.85rem;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

#contacto-catering .cc-btn:hover{
    opacity:.9;
}



#contacto-catering .cc-whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:var(--cc-gold);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    z-index:999;
    box-shadow:0 8px 16px rgba(0,0,0,.2);
}

#contacto-catering .cc-whatsapp i{
    color:#fff;
    font-size:1.5rem;
}


@media(max-width:992px){

    #contacto-catering .cc-wrapper{
        grid-template-columns:1fr;
    }

    #contacto-catering .cc-left,
    #contacto-catering .cc-right{
        padding:25px;
    }

    #contacto-catering .cc-title{
        font-size:2rem;
    }

    #contacto-catering .cc-right h2{
        font-size:1.7rem;
    }

    #contacto-catering .cc-schedule-row{
        flex-direction:column;
        gap:3px;
    }
}



.visit-section {
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto !important; 
    padding: 10px 20px;
    text-align: center;
    box-sizing: border-box;
    display: block; 
    clear: both; 
}

.visit-section .visit-header {
    margin-bottom: 35px;
    text-align: center; 
}

.visit-section .visit-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 10px 0;
    align-items: center;
    margin-top: -10px;
}

.visit-section .visit-header .accent-text {
    color: #9A7B43;
}

.visit-section .visit-header p {
    font-size: 18px;
    color: #111111;
    margin: 0;
}

.visit-section .map-wrapper {
    position: relative;
    width: 100% !important; 
    max-width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    background-color: #e5e3df;
    margin-top: 20px;
}

.visit-section .map-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
}

.visit-section .maps-overlay-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #ffffff !important;
    color: #1a73e8 !important;
    text-decoration: none !important;
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: background-color 0.2s ease;
    z-index: 99; 
}

.visit-section .maps-overlay-btn:hover {
    background-color: #f8f9fa !important;
}

.visit-section .maps-overlay-btn .btn-icon {
    margin-left: 8px;
}


@media(max-width:992px){

    .cc-stats-container{
        grid-template-columns:repeat(2,1fr);
        gap:40px 20px;
    }

    .cc-stat-number{
        font-size:3.2rem;
    }

    .cc-stat-text{
        font-size:.95rem;
    }

}


@media(max-width:576px){

    .cc-stats-section{
        padding:55px 20px;
    }

    .cc-stats-container{
        grid-template-columns:1fr;
        gap:35px;
    }

    .cc-stat-number{
        font-size:2.8rem;
    }

    .cc-stat-text{
        font-size:.9rem;
    }

}


@media(max-width:1100px){

    .pv-grid{
        grid-template-columns:1fr;
        max-width:700px;
    }

    .pv-card{
        height:500px;
    }

}

@media(max-width:768px){

    .ev-service-header{
        padding:16px 18px;
    }

    .ev-service-title h3{
        font-size:1.4rem;
    }

    .ev-service-title p{
        font-size:0.85rem;
    }

    .ev-service-list{
        grid-template-columns:1fr;
        gap:12px;
        padding:18px;
    }

}

@media(max-width:1200px){

    .nv-values-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .nv-values-section{
        padding:70px 20px;
    }

    .nv-values-header h2{
        font-size:2.8rem;
    }

    .nv-values-grid{
        grid-template-columns:1fr;
    }

    .nv-value-card{
        min-height:auto;
    }

}


@media(max-width:992px){

    .cc-symbol-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .cc-symbol-title{
        font-size:3.5rem;
    }

}

@media(max-width:768px){

    .cc-symbol-section{
        padding:70px 20px;
    }

    .cc-symbol-title{
        font-size:2.8rem;
    }

    .cc-symbol-card{
        padding:35px;
    }

    .cc-symbol-card h3{
        font-size:2rem;
    }

}
.seccion-corporativa {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    background-color: rgb(255, 250, 242);
}

.seccion-corporativa .contenedor-tarjetas {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.seccion-corporativa .tarjeta-corporativa {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Sombra suave idéntica a la imagen */
    padding: 40px 30px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


@media (max-width: 1200px) {
    .ccs-services-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .navbar {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    
    .features-grid, 
    .ccs-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 35px 20px;
    }

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

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .menu {
        display: none; 
    }
    
}

@media screen and (max-width: 768px) {
    .cc-symbol-card {
        width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 30px 20px !important; 
    }

    .card-texto h3 {
        font-size: 1.5rem !important; 
    }

    .cc-symbol-quote {
        font-size: 1.2rem !important;
    }
}