/* === VARIABLES & RESET === */
:root {
    --primary-blue: #09122C; /* Dark navy from the image */
    --secondary-blue: #0A1C3E;
    --accent-yellow: #FABC02; /* The discount and text highlight color */
    --accent-orange: #FF7000; /* Titles and main buttons */
    --whatsapp-green: #25D366; /* WhatsApp green */
    --text-dark: #222222;
    --text-light: #FFFFFF;
    --bg-light: #F4F6F8;
    --bg-gray: #EAEAEA;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    cursor: pointer;
}

.text-center {
    text-align: center;
}

.container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 13px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn i {
    margin-right: 8px;
    font-size: 1.2em;
}

.btn-green {
    background-color: var(--whatsapp-green);
    color: var(--text-light);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22);
}

.btn-green:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-blue {
    background-color: #007AFF; /* A bright blue for "Alugar Equipamento" */
    color: var(--text-light);
    text-transform: none;
    font-weight: 700;
    font-size: 13px;
    padding: 11px 22px;
    border-radius: 4px;
}

.btn-blue:hover {
    background-color: #0056b3;
}

.btn-orange-large {
    background-color: var(--accent-orange);
    color: var(--text-light);
    font-size: 11px;
    padding: 8px 18px;
    box-shadow: none;
    border-radius: 2px;
    margin-top: 30px;
    width: min(720px, 100%);
    letter-spacing: 0.5px;
}

.btn-orange-large:hover {
    background-color: #E66500;
    transform: translateY(-2px);
}

.btn-orange-form {
    background-color: var(--accent-orange);
    color: var(--text-light);
    width: 100%;
    margin-bottom: 15px;
    border-radius: 4px;
    text-align: center;
}

.btn-green-form {
    background-color: var(--whatsapp-green);
    color: var(--text-light);
    width: 100%;
    text-align: center;
    border-radius: 4px;
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(90deg, #040b26 0%, #07153f 52%, #091f57 100%);
    position: relative;
    padding: 56px 0 86px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg-shapes::before,
.hero-bg-shapes::after {
    content: '';
    position: absolute;
    height: 100%;
}

.hero-bg-shapes::before {
    right: 40%;
    width: 180px;
    background: rgba(22, 36, 81, 0.55);
    transform: skewX(-20deg);
}

.hero-bg-shapes::after {
    right: -150px;
    width: 360px;
    background: rgba(45, 61, 113, 0.4);
    transform: skewX(-20deg);
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 32px;
}

.hero-content {
    flex: 1;
    max-width: 545px;
    color: var(--text-light);
}

.hero-text-box {
    border-left: 3px solid var(--accent-yellow);
    padding-left: 14px;
}

.hero-content h1 {
    font-size: clamp(33px, 3vw, 58px);
    line-height: 1.05;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-content h1 .highlight {
    color: var(--accent-yellow);
}

.hero-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
    opacity: 0.86;
    max-width: 440px;
}

.hero-image {
    flex: 0 0 44%;
    max-width: 480px;
    position: relative;
}

.discount-badge {
    position: absolute;
    top: -18px;
    right: 22px;
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 12px 10px;
    min-width: 84px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 10;
}

.discount-badge::after {
    display: none;
}

.discount-text-small {
    font-size: 8px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

.discount-text-large {
    font-size: 40px;
    line-height: 1;
}

.hero-showcase {
    position: relative;
    z-index: 2;
    background-color: #f2b90c;
    border-radius: 2px;
    min-height: 240px;
    padding: 10px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    clip-path: polygon(0 0, 100% 0, 100% 84%, 73% 84%, 64% 100%, 0 100%);
}

.hero-machine-card {
    background-color: transparent;
    border-radius: 0;
    overflow: hidden;
    z-index: 5;
    display: flex;
    flex-direction: column;
}

.hero-machine-card img {
    width: 100%;
    flex: 1;
    object-fit: cover;
    min-height: 214px;
    border-radius: 6px;
    border: 1px solid rgba(7, 22, 62, 0.25);
}

.hero-machine-card span {
    display: none;
}

/* === PARTNERS === */
.partners {
    --visible-logos: 4;
    --logo-gap: 16px;
    padding: 16px 0 28px;
    background-color: var(--text-light);
    text-align: center;
    margin-top: -24px;
    border-radius: 0 0 18px 18px;
    position: relative;
    z-index: 6;
    box-shadow: 0 16px 28px rgba(8, 17, 48, 0.16);
}

.partners h2 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.partners-carousel {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto 10px;
}

.partners-viewport {
    overflow: hidden;
    width: 100%;
}

.partners-track {
    display: flex;
    gap: var(--logo-gap);
    transition: transform 0.45s ease;
    will-change: transform;
}

.logo-item {
    flex: 0 0 calc((100% - (var(--logo-gap) * (var(--visible-logos) - 1))) / var(--visible-logos));
    height: 56px;
    border-radius: 0;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    filter: grayscale(100%) saturate(0.4);
    opacity: 0.8;
    transition: var(--transition);
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-item:hover {
    filter: grayscale(0%) saturate(1.1);
    opacity: 1;
    transform: translateY(-2px);
}

.partners-nav {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #08183f;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex: 0 0 auto;
}

.partners-nav:hover {
    background: #f6a700;
    color: #07133a;
}

.partners-nav i {
    font-size: 12px;
}

.partners-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.partners-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #c3c8d4;
    padding: 0;
}

.partners-dots button.active {
    background: #f6a700;
    transform: scale(1.15);
}

.partners-divider {
    color: #e3a633;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 14px;
}

.benefits-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.benefit-item {
    font-size: 12px;
    font-weight: 500;
    color: #4f5668;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item i {
    color: var(--accent-yellow);
}

.partners-subtext {
    font-size: 10px;
    color: #99a0ad;
}

/* === EQUIPMENTS === */
.equipments {
    padding: 54px 0 40px;
    background-color: #FFFFFF;
}

.section-title {
    text-align: center;
    margin-bottom: 28px;
}

.section-title .subtitle {
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 7px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.section-title h2 {
    color: var(--primary-blue);
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 1.15;
}

.equipment-card {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(4, 18, 60, 0.08);
    margin-bottom: 32px;
    border: 1px solid #eff1f5;
}

.eq-left-box {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 32%;
    text-align: center;
}

.eq-left-box h3 {
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1.2;
}

.eq-icon-placeholder {
    width: 100%;
    margin: 14px 0;
}

.eq-icon-img {
    width: 100%;
    max-width: 220px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.18);
}

.eq-right-content {
    width: 68%;
    display: flex;
    padding: 22px;
    gap: 22px;
    align-items: center;
    position: relative;
}

.eq-right-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: #f3b34d;
}

.eq-description {
    flex: 1;
    font-size: 13px;
    color: #465067;
    padding-left: 18px;
    line-height: 1.6;
}

.eq-image-box {
    flex: 1;
}

.eq-image-box img {
    border-radius: 8px;
    width: 100%;
    object-fit: cover;
    height: 240px;
}

/* === WHERE TO USE === */
.where-to-use {
    background:
        radial-gradient(circle at 15% 20%, rgba(31, 72, 178, 0.28) 0, rgba(31, 72, 178, 0) 42%),
        linear-gradient(100deg, #020a25 0%, #071842 54%, #0a2362 100%);
    padding: 82px 0 94px;
    color: var(--text-light);
    margin-top: 14px;
    position: relative;
    overflow: hidden;
}

.where-to-use::after {
    content: '';
    position: absolute;
    right: -140px;
    top: 0;
    width: 390px;
    height: 100%;
    background: rgba(62, 83, 150, 0.26);
    transform: skewX(-20deg);
}

.where-shell {
    position: relative;
    z-index: 2;
}

.light-title {
    font-size: clamp(34px, 3.1vw, 56px);
    margin-bottom: 30px;
    line-height: 1.06;
    text-align: left;
    max-width: 980px;
    letter-spacing: 0.2px;
}

.use-cases {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 44px;
}

.case-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 7px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    color: #d7deef;
}

.case-item:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.1);
}

.case-item i {
    color: var(--accent-yellow);
    font-size: 10px;
}

.difference-title {
    font-size: clamp(30px, 2.8vw, 48px);
    line-height: 1.15;
    margin-bottom: 22px;
    text-align: left;
    max-width: 1040px;
}

.difference-content {
    display: grid;
    grid-template-columns: minmax(300px, 380px) 1fr;
    align-items: stretch;
    gap: 26px;
    max-width: 1080px;
    margin: 0 0 14px;
    text-align: left;
}

.diff-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 14px 28px rgba(2, 8, 30, 0.35);
}

.diff-machine {
    width: calc(50% - 26px);
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 8px 20px rgba(0,0,0,0.28);
}

.diff-vs {
    width: 38px;
    text-align: center;
    flex: 0 0 auto;
}

.diff-vs-icon {
    font-size: 34px;
    color: #ff3b30;
}

.diff-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.diff-block {
    margin-bottom: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 3px solid #f6c447;
    border-radius: 10px;
    padding: 14px 15px;
}

.diff-block p {
    font-size: 16px;
    line-height: 1.55;
    color: #d9e0ef;
}

.highlight-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #f6c447;
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.where-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 22px;
}

.diff-call {
    font-size: 14px;
    margin-bottom: 0;
    color: #ccd5ea;
}

.btn-orange-large {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.4px;
    padding: 14px 28px;
    border-radius: 6px;
    width: auto;
    min-width: 300px;
    margin-top: 0;
    box-shadow: 0 14px 26px rgba(255, 112, 0, 0.25);
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 38px 0 32px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 260px;
    height: 100%;
    background-image:
        linear-gradient(45deg, transparent 38%, rgba(229, 117, 118, 0.25) 38%, rgba(229, 117, 118, 0.25) 56%, transparent 56%),
        linear-gradient(45deg, transparent 62%, rgba(240, 196, 97, 0.24) 62%, rgba(240, 196, 97, 0.24) 78%, transparent 78%);
    z-index: 1;
}

.bg-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 260px;
    height: 100%;
    background-image:
        linear-gradient(135deg, transparent 34%, rgba(58, 189, 132, 0.24) 34%, rgba(58, 189, 132, 0.24) 51%, transparent 51%),
        linear-gradient(135deg, transparent 56%, rgba(241, 182, 63, 0.28) 56%, rgba(241, 182, 63, 0.28) 74%, transparent 74%);
    opacity: 1;
    z-index: 1;
}

.testimonials .subtitle {
    color: #9ea4af;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
}

.testimonials h2 {
    color: var(--accent-orange);
    font-size: 38px;
    margin-bottom: 18px;
    line-height: 1.1;
}

.reviews-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.review-card {
    background: #0a163d;
    padding: 11px 14px;
    border-radius: 8px;
    box-shadow: none;
    width: min(330px, 100%);
    text-align: left;
    position: relative;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.review-header h4 {
    margin: 0;
    color: #f0f4ff;
    font-size: 12px;
}

.review-text {
    font-style: normal;
    color: #d3ddfa;
    font-size: 11px;
    line-height: 1.4;
}

.google-rating {
    font-weight: 700;
    color: #1a2340;
    margin-top: 8px;
    font-size: 18px;
}

.stars i {
    color: #fabc02;
    font-size: 11px;
}

/* === FAQ === */
.faq {
    padding: 36px 0 56px;
    background-color: #fff;
}

.faq .subtitle {
    color: var(--accent-orange);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    font-size: 24px;
    text-transform: uppercase;
}

.accordion {
    max-width: 900px;
    margin: 26px auto 0;
}

.accordion-item {
    border: 1px solid #d9dfea;
    margin-bottom: 8px;
    border-radius: 2px;
    overflow: hidden;
}

.accordion-header {
    background-color: #060f35;
    padding: 10px 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #f2f5fe;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: #081749;
}

.accordion-header i {
    color: var(--accent-yellow);
    font-size: 12px;
}

.accordion-content {
    padding: 12px 14px;
    background-color: #fff;
    color: #475066;
    display: none;
    border-top: 1px solid #e0e0e0;
    font-size: 13px;
}

.accordion-item.active .accordion-header {
    background-color: #050d2f;
    color: #fff;
}

.accordion-item.active .accordion-content {
    display: block;
}

/* === FOOTER === */
.footer {
    background-color: #efefef;
    padding: 76px 0 44px;
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
}

.footer-info h2 {
    color: var(--primary-blue);
    margin-bottom: 28px;
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1;
}

.contact-list {
    list-style: none;
    margin-bottom: 30px;
}

.contact-list li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #293147;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-list li i {
    color: #09122c;
    font-size: 18px;
    width: 24px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #0a163d;
    color: #fff;
    border-radius: 50%;
    margin-right: 15px;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-form {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a1f2f;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 11px 16px;
    border: 1px solid #9ca0a8;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    transition: var(--transition);
    background: #e2e2e2;
    color: #111827;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0e1e49;
    box-shadow: 0 0 0 2px rgba(14, 30, 73, 0.15);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* === FLOATING WHATSAPP === */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #1DA851;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .partners {
        --visible-logos: 3;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text-box {
        border-left: none;
        padding-left: 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-image {
        width: min(100%, 540px);
        max-width: none;
    }

    .discount-badge {
        right: 10px;
    }

    .eq-right-content {
        flex-direction: column;
    }

    .difference-content {
        grid-template-columns: 1fr;
    }

    .light-title,
    .difference-title {
        text-align: center;
    }

    .use-cases {
        justify-content: center;
    }

    .diff-visual {
        width: min(520px, 100%);
        margin: 0 auto;
    }

    .where-cta {
        align-items: center;
        text-align: center;
    }

    .footer {
        padding-top: 56px;
    }

    .footer-info h2 {
        font-size: 42px;
    }

    .testimonials::before,
    .bg-shapes {
        opacity: 0.65;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(1120px, calc(100% - 30px));
    }

    .hero {
        padding-top: 60px;
    }

    .hero-showcase {
        grid-template-columns: 1fr;
    }

    .hero-machine-card img {
        min-height: 190px;
    }

    .discount-badge {
        min-width: 78px;
        padding: 8px 10px;
        top: -24px;
        right: 12px;
    }

    .discount-text-small {
        font-size: 8px;
    }

    .discount-text-large {
        font-size: 32px;
    }

    .partners {
        --visible-logos: 2;
        --logo-gap: 10px;
    }

    .logo-item {
        height: 46px;
    }

    .partners-nav {
        width: 30px;
        height: 30px;
    }

    .partners {
        margin-top: 0;
        border-radius: 0;
    }

    .equipment-card {
        flex-direction: column;
    }

    .eq-left-box, .eq-right-content {
        width: 100%;
    }

    .eq-right-content::before {
        display: none;
    }

    .eq-description {
        padding-left: 0;
    }

    .light-title {
        font-size: 34px;
        margin-bottom: 24px;
    }

    .difference-title {
        font-size: 30px;
    }

    .diff-machine {
        height: 120px;
    }

    .highlight-text {
        font-size: 20px;
    }

    .diff-block p {
        font-size: 15px;
    }

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

    .testimonials h2 {
        font-size: 30px;
    }

    .faq .subtitle {
        font-size: 18px;
    }

    .btn-orange-large {
        width: 100%;
        min-width: 0;
    }

    .footer {
        padding-top: 46px;
    }

    .footer-info h2 {
        font-size: 34px;
    }

    .contact-list li {
        font-size: 15px;
    }

    .hero {
        clip-path: none;
    }

    .where-to-use {
        clip-path: none;
        margin-top: 0;
    }
}
