:root {
    --negro: #0d0d0d;
    --gold: #e0b041;
    --bg: #f9f9f9;
    --bg-alt: #f0f0f0; /* gris claro para alternar */
    --text: #202124;
    --muted: #6b6f76;
    --box-width: 1100px;
    --header-height: 65px;
    --header-height-shrink: 53px;
    --brand-blue: #61b2ec;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Poppins',system-ui,Arial;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -webkit-font-size-adjust: 100%;
    
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-family: 'Poppins','League Spartan', sans-serif;
    letter-spacing: -0.5px;
    text-align: center

}

/* header */
header {
    position: fixed;
    inset: 0 0 auto 0;
    background: var(--negro) ;
    z-index: 1200;
}
    header .navbar {
        background: var(--negro) !important;
        /* height: var(--header-height); */
        transition: all 0.3s ease;
    }
.header-box {
    max-width: 1100px;
}
.header-box {
    padding-left: 20px;
    padding-right: 20px;
}

header .navbar-brand {
        color: #fff !important;
        font-weight: 600;
        letter-spacing: 0.5px;
}

header .navbar-nav .nav-link {
        color: #fff !important;
        font-weight: 600;
        padding: 0.5rem 0.9rem;
        transition: color .2s ease;
}

header .navbar-nav .nav-link:hover {
            color: var(--gold) !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 40px;
    margin-right:2px;
}

/*BUrguer*/
header .navbar-toggler {
        border-color: rgba(255,255,255,.4);
}

header .navbar-toggler-icon {
       filter: invert(1);
}

.wa-btn {
    width: 26px; /* antes 39px */
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: transform .2s ease, opacity .2s ease;
}

    .wa-btn img {
        width: 100%;
        height: 100%;
        display: block;
        filter: invert(64%) sepia(96%) saturate(423%) hue-rotate(84deg) brightness(94%) contrast(92%);
    }

    .wa-btn:hover {
        transform: scale(1.08);
        opacity: .9;
    }

.lang-switcher{
    padding-right:20px;
}
.lang-switcher img {
    width: 18px;
    height: auto;
    border-radius: 2px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.lang-switcher a {
    padding-right: 4px;
}

.lang-switcher img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 1px rgba(255,255,255,.35);
}







/* ====== HEADER SIZE CONTROL ====== */

header .navbar {
    padding-top: 6px;
    padding-bottom: 6px;
}

header.shrink img {
    height: 36px;
}

header .navbar-brand {
     padding: 0;
     display: flex;
     align-items: center;
}

header .navbar-brand img {
         height: 42px; /* tamaño profesional */
         width: auto;
}


#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: var(--negro);
    transition: all 0.3s ease;
    height: var(--header-height);
}

    #site-header.shrink {
        height: var(--header-height-shrink);
       
    }


    #site-header .navbar {
        min-height: var(--header-height);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;

       
    }

#site-header.shrink .navbar {
        height: var(--header-height-shrink);
        min-height: var(--header-height-shrink);
}

#site-header.shrink ~ main {
        padding-top: 60px;
}

#site-header .navbar-brand {
        display: flex;
        align-items: center;
        height: 100%;
    }




body {
    padding-top: var(--header-height);
    transition: padding-top 0.3s ease;
}

    #site-header.shrink ~ main,
    body.shrink {
        padding-top: var(--header-height-shrink);
    }


.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-collapse {
    display: flex !important;
    align-items: center;
}

.navbar-nav {
    margin-left: auto;
    align-items: center;
}






/* Ajuste fino para el logo */
.navbar-brand img,
.navbar-brand {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px
}

    nav a:hover {
        color: var(--gold)
    }

.menu-btn {
    display: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    background: transparent;
    border: none
}

/* shrink header */
header.shrink {

    box-shadow: 0 6px 20px rgba(0,0,0,.18)
}

    header.shrink img {
        height: 36px
    }

/* wrapper (content centered) */
.site-wrapper {
    max-width: var(--box-width);
    margin: 0 auto;
    padding: 0 20px
}

/* sections full width */
.section {
    padding: 100px 0;
    width: 100%
}

/* alternating backgrounds (full width since section is full-bleed) */
.section--white {
    background: #fff
}

.section--alt {
    background: var(--bg-alt)
}

/* hero (special) */
/*.hero{background:linear-gradient(180deg,#121214 0%, #2a2f36 100%); color:white; padding:140px 20px 120px}*/



.hero:not(.hero-video) {
    background: linear-gradient(180deg,#121214 0%, #2a2f36 100%);
    padding: 140px 20px 120px;
}


.hero .site-wrapper {
    padding-top: 0
}

.hero .inner {
    max-width: 880px;
    margin: 0 auto
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin: 0 0 25px;
    font-weight: 800;
}

.hero p {
    font-size: 20px;
    color: #d6d8db;
    margin: 0 0 24px
}

.size26 {
        font-size: 26px !important;
        font-weight:600;
        color: #fff !important;
    }
.size20{font-size:20px !important;}

.cta {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 15px 28px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
}

.cta:hover {
        background: #eac15a; /* dorado más claro */
        color: #000;
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}


/* utilities */
.center {
    max-width: 900px;
    margin: 0 auto
}

/* services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 28px;
    align-items: start
}

.card {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 6px 20px rgba(23,27,30,.06);
    text-align: center;
    transition: transform .28s ease, box-shadow .28s ease
}

.card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.08)
    }

.card img {
        height: 56px;
        margin-bottom: 12px
    }

.card h3 {
        margin: 8px 0
    }

.card p {
        color: var(--muted);
        margin: 0
    }


.services-grid {
    margin-top: 42px;
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 8px 26px rgba(0,0,0,.06);
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 22px 46px rgba(0,0,0,.10);
    }

    .card img {
        height: 60px;
        margin-bottom: 16px;
        filter: brightness(0) saturate(100%) invert(58%) sepia(57%) saturate(522%) hue-rotate(166deg) brightness(96%) contrast(91%);
    }

    .card h3 {
        font-size: 18px;
        font-weight: 700;
    }

    


.services-cta {
    margin-top: 68px;
    text-align: center;
}







/* portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px
}

.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 20px rgba(23,27,30,.06)
}

    .portfolio-item img {
        width: 100%;
        height: 270px;
        object-fit: cover;
        display: block
    }

    .portfolio-item .info {
        padding: 18px
    }

/* testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px
}

.testimonial {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(23,27,30,.05)
}

/* contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 36px;
    align-items: start
}

.contact-card, form {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(23,27,30,.05)
}

    form input, form textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #e6e7ea;
        border-radius: 8px;
        margin-top: 10px
    }

    form button {
        margin-top: 12px;
        background: var(--negro);
        color: #fff;
        padding: 12px 16px;
        border-radius: 8px;
        border: none
    }



/* Responsive breakpoints */
@media (max-width:1100px) {
    .services-grid {
        grid-template-columns: repeat(3,1fr)
    }

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

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

    .site-wrapper {
        padding: 0 18px
    }
}

@media (max-width:860px) {
    :root {
        --box-width: 940px
    }

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

    .portfolio-grid {
        grid-template-columns: 1fr
    }

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

    .contact-grid {
        grid-template-columns: 1fr
    }

    header img {
        height: 40px
    }
}

@media (max-width: 768px) {
    .header-actions {
        margin-top: 10px;
        justify-content: center;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }
}

@media (max-width:600px) {
    header {
        height: auto;
        padding: 10px 0
    }

    .menu-btn {
        display: block
    }

    nav {
        display: none
    }

    header.open nav {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: var(--header-height);
        background: var(--negro);
        padding: 12px 20px
    }

    nav ul {
        flex-direction: column;
        gap: 12px
    }

    .hero h1 {
        font-size: 34px
    }

    .hero {
        padding: 70px 16px
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .card {
        padding: 18px
    }
}

/* small phones */
@media (max-width:420px) {
    .hero h1 {
        font-size: 28px
    }

    h2 {
        font-size: 24px
    }

    .portfolio-item img {
        height: 160px
    }
}



/* Animaciones */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn .9s ease forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp .9s ease forwards;
    animation-delay: .25s;
}

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

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



.hero-video {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Video siempre cubre */
    z-index: -1;
    filter: brightness(0.50); /* Oscurece para que el texto se lea mejor */
}

.hero-content {
    position: relative;
    max-width: 800px;
    text-align: center;
    animation: fadeIn 1.2s ease forwards;
}


.card img {
    height: 90px;
    width: 90px;
    margin-bottom: 14px;
    opacity: 0.9;
}

    .card img:hover {
        opacity: 1;
    }








/* SECTION TITLES (h2) */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: #111;
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #6b6f76;
    margin-top: 0;
    margin-bottom: 40px;
    text-align: center;
}

section {
    padding: 80px 0;
}



/* CARD TITLES (h3) */
.card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 12px 0;
    text-transform: uppercase;
}


.card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

.service-claim {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--brand-blue) !important; /* tu celeste/azul alegre */
    margin: 6px 0 10px;
}




.portfolio-item .info {
    padding: 18px
}


.portfolio-item .info {
    padding: 20px;
    text-align: left;
}

.portfolio-item h3 {
    margin-bottom: 6px;
}

.portfolio-item p {
    margin: 0 0 8px;
}




.portfolio-cta-text {
    max-width: 720px;
    margin: 36px auto 26px;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
}

.portfolio-cta {
    margin-top: 30px;
    text-align: center;
}

    .portfolio-cta .btn {
        padding: 14px 32px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 6px;
    }

.cta {
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

    .cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }



.cta-secondary {
    display: inline-block;
    background: #4db6e2;
    color: #fff;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all .25s ease;
}

    .cta-secondary:hover {
        background: #3aa6cf;
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(77,182,226,0.35);
    }



.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
    margin-top: 40px;
}

.benefit-item {
    background: #fff;
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 6px 20px rgba(23,27,30,.06);
    text-align: center;
}

    .benefit-item h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .benefit-item p {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
    }

@media(max-width:860px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}



.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.benefit-item {
    background: #fff;
    border-radius: 14px;
    padding: 26px 22px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .benefit-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    }

    .benefit-item img {
        height: 52px;
        margin-bottom: 14px;
        opacity: 0.95;
    }

    .benefit-item h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 10px 0;
    }

    .benefit-item p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #666;
    }



@media (max-width: 860px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}


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

.testimonial-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    }

    .testimonial-card img {
        width: 70px;
        height: 70px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 20px;
    }

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-card span {
    font-size: 14px;
    color: #777;
}







/* CONTACT SECTION */
.contact-section {
    background: #fff;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* LEFT INFO */
.contact-info {
    padding-right: 20px;
}

    .contact-info .section-title {
        text-align: left;
        margin-bottom: 12px;
    }

    .contact-info .section-subtitle {
        text-align: left;
        margin-bottom: 28px;
        max-width: 420px;
    }

/* CONTACT DATA */
.contact-data {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .contact-data li {
        margin-bottom: 18px;
        font-size: 14px;
        color: #444;
        line-height: 1.5;
    }

/* RIGHT FORM */
.contact-form-wrapper {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 14px;
        border: 1px solid #dcdfe3;
        border-radius: 8px;
        font-size: 14px;
        font-family: 'Poppins',sans-serif;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #4db6e2;
            box-shadow: 0 0 0 3px rgba(77,182,226,.15);
        }

    /* BUTTON */
    .contact-form button {
        margin-top: 10px;
        background: #4db6e2;
        color: #fff;
        border: none;
        padding: 14px 24px;
        border-radius: 10px;
        font-weight: 700;
        cursor: pointer;
        transition: transform .2s ease, box-shadow .2s ease;
    }

        .contact-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(77,182,226,.35);
        }

/* RESPONSIVE */
@media(max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding-right: 0;
        text-align: center;
    }

        .contact-info .section-title,
        .contact-info .section-subtitle {
            text-align: center;
        }
}


/* FORM HEADER */
.form-head {
    margin-bottom: 22px;
}

    .form-head h3 {
        margin: 0 0 6px;
        font-size: 20px;
        font-weight: 600;
    }

    .form-head p {
        margin: 0;
        font-size: 14px;
        color: #6b6f76;
    }

/* GROUP */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    /* LABEL */
    .form-group label {
        font-size: 13px;
        font-weight: 500;
        color: #444;
    }

/* INPUTS */
.contact-form input,
.contact-form textarea {
    background: #f9fafb;
    border: 1px solid #e2e5e9;
    transition: all .2s ease;
}

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: #9aa0a6;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
        background: #fff;
        border-color: #4db6e2;
    }

/* BUTTON */
.contact-form button {
    margin-top: 14px;
    font-size: 14px;
    letter-spacing: .3px;
}



.contact-text {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-bottom:25px;
}

.contact-text li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.contact-text li::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0.55em;
    width: 8px;
    height: 8px;
    background: var(--brand-blue);
    border-radius: 50%;
}





/* ===== FOOTER ===== */

.site-footer {
    background: var(--negro);
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 40px 0 32px;

}

.footer-col {
    line-height: 1.45;
}

.footer-brand {
    font-weight: 600;
    color: #fff;
    letter-spacing: .4px;
}

.footer-text,
.footer-copy {
    color: rgba(255,255,255,.65);
    font-size: 13.5px;
}

.footer-copy {
    margin-top: 4px;

}
.footer-slogan {
    color: rgba(255,255,255,.65);
    font-size: 13px;
    margin-bottom: 15px;
}

/* Links derecha */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
        margin-bottom: 6px;
    }

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: color .25s ease;
}

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

/* Social */

.social-icon {
    font-size: 18px;
    color: #fff;
    margin-left: 14px;
    transition: transform .25s ease, color .25s ease;
}

    .social-icon:first-child {
        margin-left: 0;
    }

    .social-icon:hover {
        transform: translateY(-2px) scale(1.08);
        color: var(--gold);
    }
.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    margin-top: 4px;
}

.footer-trust {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    margin-bottom: 4px;
}


/* Contacto en footer (derecha) */
.footer-contact {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.footer-contact-item {
    font-size: 14px;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .25s ease;
}

    .footer-contact-item i {
        font-size: 16px;
    }

    .footer-contact-item:hover {
        color: var(--gold);
    }

/* Links horizontales */
.footer-links-inline {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

    .footer-links-inline li {
        margin-bottom: 0; /* anulamos vertical */
    }



/* ===== HEADER ALIGN FIX  Corrección de posicion en el shrink ===== */

/* Estado normal */
#site-header .navbar-collapse {
    padding-top: 2px;
}

/* Estado shrink */
#site-header.shrink .navbar-collapse {
    padding-top: 5px;
}


.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    margin-bottom: 3rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-top: 1rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.legal-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #444;
}