/* ================= RESET ================= */

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


:root {

    --black: #111111;
    --dark: #181818;
    --yellow: #f5c400;
    --white: #ffffff;
    --light: #f3f3f1;
    --gray: #666666;
    --border: #dddddd;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: "Inter", sans-serif;

    color: var(--black);

    background: var(--white);

}


.container {

    width: min(1180px, 90%);

    margin: auto;

}


a {

    text-decoration: none;

    color: inherit;

}


/* ================= HEADER ================= */

.site-header {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 100;

    padding: 20px 0;

}


.header-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* LOGO CORREGIDO */

.brand {

    width: 180px;

    height: 60px;

    display: flex;

    align-items: center;

    overflow: hidden;

    flex-shrink: 0;

}


.brand img {

    width: 145px;

    height: 145px;

    max-width: none;

    object-fit: contain;

    display: block;

}


/* NAVEGACIÓN */

.main-nav {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 30px;

    color: white;

    font-size: 14px;

    flex: 1;

}


.main-nav a {

    transition: .3s;

}


.main-nav a:hover {

    color: var(--yellow);

}


.header-button {

    background: var(--yellow);

    color: var(--black);

    padding: 13px 20px;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

}


.menu-toggle {

    display: none;

    background: none;

    border: none;

    color: white;

    font-size: 28px;

}


/* ================= HERO ================= */

.hero {

    min-height: 760px;

    position: relative;

    display: flex;

    align-items: center;

    color: white;

    overflow: hidden;

}


.hero-background {

    position: absolute;

    inset: 0;

}


.hero-slide {

    position: absolute;

    inset: 0;

    background-position: center;

    background-size: cover;

    opacity: 0;

    transition: opacity 1s ease;

}


.hero-slide.active {

    opacity: 1;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(

        90deg,

        rgba(0, 0, 0, .88),

        rgba(0, 0, 0, .55),

        rgba(0, 0, 0, .2)

    );

}


.hero-container {

    position: relative;

    z-index: 2;

}


.hero-content {

    max-width: 720px;

    padding-top: 130px;

}


.hero-label {

    color: var(--yellow);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    display: block;

    margin-bottom: 20px;

}


.hero h1 {

    font-family: "Barlow Condensed", sans-serif;

    text-transform: uppercase;

    font-size: clamp(48px, 7vw, 86px);

    line-height: .95;

    margin: 0 0 25px 0;

    max-width: 780px;

}


.hero-description {

    max-width: 650px;

    font-size: 18px;

    line-height: 1.6;

    margin-bottom: 10px;

    color: #eeeeee;

}


.hero-buttons {

    display: flex;

    gap: 15px;

    margin-top: 35px;

}


.btn {

    display: inline-block;

    padding: 16px 25px;

    font-weight: 700;

    font-size: 14px;

    transition: .3s;

}


.btn-yellow {

    background: var(--yellow);

    color: var(--black);

}


.btn-yellow:hover {

    background: white;

}


.btn-outline {

    border: 1px solid white;

    color: white;

}


.btn-outline:hover {

    background: white;

    color: black;

}


.hero-stats {

    display: flex;

    gap: 40px;

    margin-top: 70px;

}


.hero-stats div {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.hero-stats strong {

    color: var(--yellow);

    font-size: 14px;

}


.hero-stats span {

    font-size: 12px;

    color: #cccccc;

}


.hero-dots {

    position: absolute;

    bottom: 35px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 8px;

}


.hero-dot {

    width: 35px;

    height: 4px;

    border: none;

    background: #777;

    cursor: pointer;

}


.hero-dot.active {

    background: var(--yellow);

}


/* ================= QUICK QUOTE ================= */

.quick-quote {

    background: var(--yellow);

    padding: 35px 0;

}


.quick-quote-container {

    display: grid;

    grid-template-columns: 1fr 1.5fr;

    align-items: center;

    gap: 50px;

}


.quick-quote-text span {

    font-size: 12px;

    font-weight: 800;

}


.quick-quote h2 {

    font-family: "Barlow Condensed", sans-serif;

    text-transform: uppercase;

    font-size: 36px;

    margin: 8px 0;

}


.quick-quote p {

    font-size: 14px;

}


.quick-form {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

}


.quick-form input,
.quick-form select {

    border: none;

    padding: 15px;

    font-family: inherit;

}


.quick-form button {

    grid-column: span 2;

    border: none;

    padding: 16px;

    background: var(--black);

    color: white;

    font-weight: 700;

    cursor: pointer;

}


/* ================= SECTIONS ================= */

.section {

    padding: 110px 0;

}


.section-light {

    background: var(--light);

}


.section-white {

    background: white;

}


.section-header {

    max-width: 700px;

    margin-bottom: 60px;

}


.section-label {

    display: block;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;

}


.section-header h2 {

    font-family: "Barlow Condensed", sans-serif;

    text-transform: uppercase;

    font-size: clamp(40px, 5vw, 68px);

    line-height: .95;

    margin-bottom: 20px;

}


.section-header p {

    color: var(--gray);

    line-height: 1.7;

}


/* ================= INTRO ================= */

.intro-section {

    padding: 70px 0;

    background: var(--black);

    color: white;

}


.intro-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 50px;

}


.intro-item span {

    color: var(--yellow);

    font-size: 30px;

    font-weight: 800;

}


.intro-item h3 {

    font-family: "Barlow Condensed", sans-serif;

    text-transform: uppercase;

    font-size: 25px;

    margin: 15px 0;

}


.intro-item p {

    color: #aaa;

    line-height: 1.7;

    font-size: 14px;

}


/* ================= SECTORS ================= */

.sector-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2px;

    background: #ccc;

}


.sector-card {

    background: white;

    padding: 35px;

    min-height: 270px;

    position: relative;

    transition: .3s;

}


.sector-card:hover {

    background: var(--black);

    color: white;

}


.sector-card > span {

    color: var(--yellow);

    font-weight: 800;

}


.sector-icon {

    font-size: 35px;

    margin: 25px 0 10px;

}


.sector-card h3 {

    font-family: "Barlow Condensed", sans-serif;

    text-transform: uppercase;

    font-size: 30px;

    margin-bottom: 10px;

}


.sector-card p {

    color: var(--gray);

    line-height: 1.6;

    font-size: 14px;

}


.sector-card:hover p {

    color: #bbb;

}


/* ================= SOLUTIONS ================= */

.solution-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

}


.solution-card {

    border: 1px solid var(--border);

}


.solution-image {

    height: 300px;

    overflow: hidden;

}


.solution-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}


.solution-card:hover img {

    transform: scale(1.05);

}


.solution-content {

    padding: 25px;

}


.solution-content > span {

    color: var(--yellow);

    font-weight: 800;

}


.solution-content h3 {

    font-family: "Barlow Condensed", sans-serif;

    text-transform: uppercase;

    font-size: 32px;

    margin: 10px 0;

}


.solution-content p {

    color: var(--gray);

    line-height: 1.6;

}


/* ================= CUSTOM ================= */

.custom-section {

    padding: 120px 0;

    background: var(--dark);

    color: white;

}


.custom-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;

}


.yellow-label {

    color: var(--yellow);

}


.custom-content h2 {

    font-family: "Barlow Condensed", sans-serif;

    text-transform: uppercase;

    font-size: clamp(42px, 5vw, 70px);

    line-height: .95;

    margin-bottom: 15px;

}


.custom-content h3 {

    font-family: "Barlow Condensed", sans-serif;

    text-transform: uppercase;

    color: var(--yellow);

    font-size: 28px;

    margin-bottom: 25px;

}


.custom-content p {

    color: #aaa;

    line-height: 1.7;

    margin-bottom: 15px;

}


.custom-content .btn {

    margin-top: 20px;

}


.custom-steps {

    border-left: 1px solid #555;

}


.custom-step {

    display: flex;

    gap: 25px;

    padding: 25px 0 25px 30px;

    border-bottom: 1px solid #333;

}


.custom-step > span {

    color: var(--yellow);

    font-size: 20px;

    font-weight: 800;

}


.custom-step h3 {

    font-family: "Barlow Condensed", sans-serif;

    text-transform: uppercase;

    font-size: 25px;

    margin-bottom: 8px;

}


.custom-step p {

    color: #999;

    font-size: 14px;

}


/* ================= VALUE ================= */

.section-yellow {

    background: var(--yellow);

}


.value-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

}


.dark-label {

    color: var(--black);

}


.value-intro h2 {

    font-family: "Barlow Condensed", sans-serif;

    text-transform: uppercase;

    font-size: clamp(45px, 5vw, 70px);

    line-height: .95;

    margin-bottom: 25px;

}


.value-intro p {

    line-height: 1.7;

}


.value-list {

    display: grid;

    gap: 20px;

}


.value-item {

    display: flex;

    gap: 20px;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(0,0,0,.3);

}


.value-item > span {

    font-size: 22px;

    font-weight: 800;

}


.value-item h3 {

    font-family: "Barlow Condensed", sans-serif;

    text-transform: uppercase;

    font-size: 25px;

    margin-bottom: 5px;

}


.value-item p {

    font-size: 14px;

    line-height: 1.6;

}


/* ================= PROCESS ================= */

.process-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2px;

    background: #ccc;

}


.process-card {

    background: white;

    padding: 35px;

    min-height: 250px;

}


.process-card > span {

    font-size: 35px;

    color: var(--yellow);

    font-weight: 800;

}


.process-card h3 {

    font-family: "Barlow Condensed", sans-serif;

    text-transform: uppercase;

    font-size: 28px;

    margin: 20px 0 10px;

}


.process-card p {

    color: var(--gray);

    line-height: 1.6;

}


/* ================= QUOTE ================= */

.quote-section {

    padding: 110px 0;

    background: var(--black);

    color: white;

}


.quote-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: start;

}


.quote-content h2 {

    font-family: "Barlow Condensed", sans-serif;

    text-transform: uppercase;

    font-size: clamp(45px, 5vw, 70px);

    line-height: .95;

    margin-bottom: 25px;

}


.quote-content > p {

    color: #aaa;

    line-height: 1.7;

    margin-bottom: 15px;

}


.quote-benefits {

    margin-top: 35px;

}


.quote-benefits p {

    margin-bottom: 10px;

    color: var(--yellow);

}


.quote-form {

    background: white;

    color: var(--black);

    padding: 35px;

    display: grid;

    gap: 12px;

}


.quote-form h3 {

    font-family: "Barlow Condensed", sans-serif;

    text-transform: uppercase;

    font-size: 32px;

    margin-bottom: 10px;

}


.quote-form input,
.quote-form select,
.quote-form textarea {

    width: 100%;

    border: 1px solid #ddd;

    padding: 15px;

    font-family: inherit;

    font-size: 14px;

}


.quote-form textarea {

    min-height: 120px;

    resize: vertical;

}


.quote-form button {

    border: none;

    padding: 17px;

    background: var(--yellow);

    font-weight: 800;

    cursor: pointer;

}


.quote-form button:hover {

    background: var(--black);

    color: white;

}


.quote-form small {

    color: #777;

    font-size: 11px;

}


/* ================= CONTACT ================= */

.contact-section {

    padding: 100px 0;

    background: var(--dark);

    color: white;

}


.contact-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;

}


.contact-section h2 {

    font-family: "Barlow Condensed", sans-serif;

    text-transform: uppercase;

    font-size: clamp(40px, 5vw, 65px);

    line-height: .95;

    margin-bottom: 20px;

}


.contact-section p {

    color: #aaa;

}


.contact-links {

    display: grid;

}


.contact-links a {

    display: flex;

    justify-content: space-between;

    padding: 22px 0;

    border-bottom: 1px solid #444;

    font-weight: 700;

}


.contact-links a:hover {

    color: var(--yellow);

}


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

.site-footer {

    background: #0b0b0b;

    color: white;

    padding: 45px 0;

}


.footer-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

}


.footer-container img {

    width: 130px;

}


.footer-container p {

    color: #777;

    font-size: 12px;

    margin-top: 10px;

}


.footer-links {

    display: flex;

    gap: 20px;

    font-size: 13px;

}


.footer-links a:hover {

    color: var(--yellow);

}


/* ================= WHATSAPP ================= */

.whatsapp-float {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: #25d366;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 800;

    z-index: 1000;

    box-shadow: 0 5px 20px rgba(0,0,0,.3);

}


/* ================= MOBILE ================= */

@media (max-width: 850px) {


    .site-header {

        padding: 15px 0;

    }


    .brand {

        width: 150px;

        height: 55px;

    }


    .brand img {

        width: 125px;

        height: 125px;

    }


    .main-nav,
    .header-button {

        display: none;

    }


    .menu-toggle {

        display: block;

    }


    .hero {

        min-height: 700px;

    }


    .hero-content {

        padding-top: 120px;

    }


    .hero h1 {

        font-size: 52px;

    }


    .hero-stats {

        gap: 20px;

        flex-wrap: wrap;

    }


    .quick-quote-container,
    .custom-grid,
    .value-grid,
    .quote-grid,
    .contact-container {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .quick-form {

        grid-template-columns: 1fr;

    }


    .quick-form button {

        grid-column: auto;

    }


    .intro-grid,
    .sector-grid,
    .process-grid {

        grid-template-columns: 1fr;

    }


    .solution-grid {

        grid-template-columns: 1fr;

    }


    .footer-container {

        flex-direction: column;

        align-items: flex-start;

    }


    .footer-links {

        flex-wrap: wrap;

    }

}