/* ===========================================================
    RESET & BASE STYLES
    =========================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===========================================================
    CSS VARIABLES
    =========================================================== */
:root {
    --primary-color: #0161D9;
    --primary-color-dark: #002288;
    --secondary-color: #0046D9;
    --text-dark: #333333;
    --text-light: #767268;
    --white: #ffffff;
    --max-width: 1200px;
    --header-font: "Poppins", sans-serif;
    --footer-bg: #000000;
    --footer-light-text: #b0b0b0;
    --footer-middle-bar-bg: #131212;
    --whatsapp-green: #25D366;
    --gradient-primary: linear-gradient(to top, #0161D9 0%, #002288 100%);
    --gradient-secondary: linear-gradient(135deg, #0161D9 0%, #002288 100%);
    --gradient-accent: linear-gradient(135deg, #0046D9 0%, #002288 100%);
}

/* ===========================================================
    LAYOUT CONTAINERS
    =========================================================== */
.interface {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}

/* ===========================================================
    BUTTONS
    =========================================================== */
.primary-btn {
    width: 210px;
    height: 50px;
    border-radius: 30px;
    border: none;
    font-size: 1em;
    font-weight: 600;
    color: #fafafa;
    background: var(--gradient-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(165, 148, 229, 0.54);
}

/* ===========================================================
    SECTION TITLES (PADRONIZAÇÃO)
    =========================================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-header.left {
    text-align: left;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-title.gradient {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title.light {
    color: #fff;
}

.section-title.dark {
    color: #2c3e50;
}

.section-title span {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0161D9, #002288);
    margin: 15px auto 0;
    border-radius: 2px;
    animation: pulseTitle 2s ease-in-out infinite;
}

@keyframes pulseTitle {
    0%, 100% {
        opacity: 0.7;
        transform: scaleX(0.9);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.section-title.left::after {
    margin: 15px 0 0;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #6b7280;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-subtitle.light {
    color: #b0b0b0;
}

/* ===========================================================
    NAVBAR
    =========================================================== */
.header {
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s, box-shadow 0.4s;
}

.header.scrolled {
    background-color: #000;
    box-shadow: 0 2px 20px rgba(1, 97, 217, 0.3);
}

.navbar {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.4s, transform 0.3s;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.header.scrolled .nav-logo img {
    filter: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 8px 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.header.scrolled .nav-links li a {
    color: rgba(255, 255, 255, 0.9);
}

.nav-links li a:hover {
    color: #fff;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0161D9, #002288);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
    box-shadow: 0 3px 10px rgba(1, 97, 217, 0.5);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a.active {
    color: #fff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(1, 97, 217, 0.5);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--gradient-secondary);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(1, 97, 217, 0.4);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 97, 217, 0.6);
}

.nav-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--white);
    transition: color 0.3s;
    background: none;
    border: none;
    padding: 8px;
}

.nav-toggle:hover {
    color: #0161D9;
}

/* ===========================================================
    FIXED WHATSAPP BUTTON
    =========================================================== */
.whatsapp-fixed-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--whatsapp-green);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: background-color 0.3s;
}

.whatsapp-fixed-button:hover {
    background-color: #1DA851;
}

/* ===========================================================
    SECTION: HERO (INÍCIO)
    =========================================================== */
section.inicio {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.background-video {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    overflow: hidden;
}

.background-video .overlay::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(4, 4, 7, 0.751);
}

.background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.inicio .txt-inicio {
    width: 50%;
    position: relative;
    z-index: 1;
    color: white;
    margin-top: 30vh;
}

.inicio .txt-inicio h1 {
    font-size: clamp(2rem, 5vw, 4em);
    line-height: 1.2;
    font-weight: 200;
}

.inicio .txt-inicio h1 span {
    font-weight: 620;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.inicio .txt-inicio p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    margin: 20px 0;
}

.buttons-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.inicio button {
    width: 220px;
    height: 60px;
    border: 2px solid #ffffff;
    border-radius: 70px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    color: #fafafa;
    transition: 0.6s;
    background: linear-gradient(transparent, transparent) padding-box,
                linear-gradient(90deg, rgba(0, 1, 3, 0), rgba(0, 1, 3, 0.067)) border-box;
}

.inicio button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(165, 148, 229, 0.54);
    background: var(--gradient-primary);
    border: none;
}

.buttons-container .whats {
    width: 220px;
    height: 60px;
    font-size: 1em;
    gap: 15px;
    background: rgba(4, 4, 7, 0.05);
    border: none;
    border-radius: 70px;
    cursor: pointer;
    font-weight: 800;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.buttons-container .whats::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 70px;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.buttons-container .whats span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.buttons-container .whats:hover {
    transform: scale(1.05);
    color: white;
    background: var(--gradient-primary);
    box-shadow: 0 5px 15px rgba(1, 97, 217, 0.54);
}

.buttons-container .whats:hover span {
    -webkit-text-fill-color: white;
    color: white;
}

/* ===========================================================
    SECTION: O QUE FAZEMOS
    =========================================================== */
.oqfazemos {
    background: #000000;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.oqfazemos::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(98, 42, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(2, 65, 254, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.oqfazemos .section-header {
    color: white;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 10px;
}

.card {
    background: linear-gradient(145deg, rgba(25, 25, 40, 0.6), rgba(15, 15, 25, 0.8));
    border: 1px solid rgba(1, 97, 217, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-radius: 24px;
    padding: 45px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 360px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(1, 97, 217, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(1, 97, 217, 0.4),
                0 10px 30px rgba(0, 0, 0, 0.6);
    border-color: rgba(1, 97, 217, 0.5);
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1, 97, 217, 0.2), rgba(0, 34, 136, 0.2));
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: 0;
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -8px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
    filter: blur(15px);
}

.card:hover .icon-wrapper::after {
    opacity: 0.6;
    inset: -15px;
}

.card:hover .icon-wrapper::before {
    background: linear-gradient(135deg, rgba(1, 97, 217, 0.4), rgba(0, 34, 136, 0.4));
    transform: scale(1.1);
}

.card:hover .icon-wrapper {
    transform: translateY(-8px) scale(1.1);
}

.card i {
    font-size: 3rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    filter: drop-shadow(0 5px 15px rgba(1, 97, 217, 0.5));
}

.card:hover i {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(1, 97, 217, 0.8));
}

.card h3 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 15px;
    font-weight: 700;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.card:hover h3 {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

.card p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.7;
    transition: color 0.3s ease;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.card:hover p {
    color: #d0d0d0;
}

/* ===========================================================
    SECTION: VANTAGENS
    =========================================================== */
section.vantagens {
    background-color: #ffffff;
    padding: 80px 0;
}

.vantagens .itens-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.vantagens .itens-container .img-itens img {
    max-width: 100%;
    height: auto;
    box-shadow: 15px 15px #0052D4;
    border-radius: 25px;
}

.vantagens .txt-itens h3 {
    font-size: clamp(2rem, 4vw, 3em);
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 800;
    color: #2c3e50;
}

.vantagens .txt-itens h3 span {
    font-weight: 400;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================================================
    SECTION: COMO FUNCIONA
    =========================================================== */
section.como-funciona {
    padding: 80px 0;
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 3, 61, 1) 50%, rgba(0, 6, 166, 1) 100%);
}

.txt-funciona,
.instrucoes {
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: top;
}

.como-funciona .txt-funciona {
    position: sticky;
    top: 50%;
    padding-bottom: 45px;
}

.como-funciona .txt-funciona h3 {
    font-size: clamp(2rem, 4vw, 4em);
    line-height: 1.3;
    font-weight: 300;
    color: #ffffff;
}

.como-funciona .txt-funciona h3 span {
    display: block;
    font-weight: 800;
}

.instrucoes .instru-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
    padding: 30px 20px;
    background-color: #ffffff;
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.42);
    min-height: 200px;
    margin-left: 30px;
}

.instrucoes .instru-box img {
    max-width: 140px;
    border-radius: 50%;
}

.instrucoes .instru-box h4 {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 15px;
}

.instrucoes .instru-box h4 span {
    font-weight: 300;
}

.instrucoes .instru-box p {
    line-height: 1.5;
}

/* ===========================================================
    SECTION: CASES
    =========================================================== */
.cases {
    padding: 120px 20px 100px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.cases::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(1, 97, 217, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 34, 136, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cases .section-header h1 {
    color: #ffffff;
}

.cases h1 span {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.case-card {
    position: relative;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(1, 97, 217, 0.2);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(1, 97, 217, 0.4) 100%);
    opacity: 0.7;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.case-card:hover .image-wrapper::after {
    opacity: 1;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.case-card:hover .image-wrapper {
    transform: translateY(-30px) scale(1.05);
    box-shadow: 0 35px 80px rgba(1, 97, 217, 0.4),
                0 20px 40px rgba(0, 0, 0, 0.6);
}

.case-card:hover .image-wrapper img {
    transform: scale(1.15);
}

.project-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(-5deg);
    background: var(--gradient-secondary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 3;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(1, 97, 217, 0.6);
    white-space: nowrap;
}

.case-card:hover .project-badge {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
}

.case-info {
    width: 100%;
    background: linear-gradient(145deg, rgba(25, 25, 40, 0.95), rgba(15, 15, 25, 0.98));
    border-radius: 20px;
    padding: 70px 30px 35px;
    margin-top: -50px;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(1, 97, 217, 0.15);
    transition: all 0.5s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.case-card:hover .case-info {
    transform: translateY(-10px);
    border-color: rgba(1, 97, 217, 0.4);
}

.case-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.case-card:hover .case-info h3 {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-info a {
    color: #777;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.case-card:hover .case-info a {
    color: #0241fe;
    font-weight: 700;
}

/* ===========================================================
    SECTION: FEEDBACK
    =========================================================== */
section.feedback {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header h1 span {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-container {
    position: relative;
    max-width: 1270px;
    padding: 0 40px;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carde {
    min-width: 350px;
    margin-right: 20px;
    background: white;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.image-content {
    height: 160px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 14px;
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: #003cff;
    border-radius: 25px 25px 0 25px;
}

.overlay::before,
.overlay::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: #003cff;
}

.overlay::after {
    border-radius: 0 25px 0 0;
    background-color: #fff;
}

.carde-image {
    position: relative;
    height: 130px;
    width: 130px;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
}

.carde-image .carde-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #003cff;
}

.carde h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    padding: 25px 20px 0;
    line-height: 30px;
}

.carde h5 {
    font-weight: 500;
    color: #2c3e50;
    padding-bottom: 20px;
}

.carde p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 0 20px;
}

.indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-top: 30px;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #4F7AFF;
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    opacity: 1;
    transform: scale(1.2);
}

/* ===========================================================
    SECTION: FORM ORÇAMENTO
    =========================================================== */
.form-orcamento {
    background: #000;
    color: #fff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.form-texto {
    flex: 1;
    min-width: 300px;
}

.form-texto h2 {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.form-texto h2 span {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-texto p {
    font-size: 1rem;
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #9eff3d;
    padding: 12px 20px;
    border-radius: 12px;
    border: 2px solid #9eff3d;
    font-weight: 600;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #9eff3d;
    color: #000;
}

.form-box {
    flex: 1;
    min-width: 320px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.duplo-input {
    display: flex;
    gap: 15px;
}

.duplo-input input {
    flex: 1;
}

input,
textarea {
    background: #1c1c1c;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 1rem;
    color: #fff;
    width: 100%;
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: #777;
}

textarea {
    min-height: 120px;
    resize: none;
}

.textarea-container {
    position: relative;
    width: 100%;
}

.textarea-container textarea {
    padding-bottom: 28px;
}

.textarea-container #contador {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 0.85rem;
    color: #777;
    opacity: 0.8;
    pointer-events: none;
}

.no-spin::-webkit-inner-spin-button,
.no-spin::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-enviar {
    background: var(--primary-color);
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(31, 184, 255, 0.4);
}

.btn-enviar:hover {
    background: var(--primary-color-dark);
    box-shadow: 0 0 30px rgba(40, 118, 254, 0.584);
}

.section-divider {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 30px rgba(40, 118, 254, 0.584);
}

/* ===========================================================
    FOOTER
    =========================================================== */
.main-footer {
    background-color: var(--footer-bg);
    padding: 20px 0 0;
    color: var(--footer-light-text);
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 20px;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 8px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
}

.footer-section p i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--footer-light-text);
    font-size: 0.9em;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-logo {
    margin-bottom: 15px;
    max-width: 140px;
    height: auto;
}

.footer-bottom-bar {
    background-color: var(--footer-bg);
    color: var(--footer-light-text);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85em;
    gap: 15px;
}

.bottom-links a {
    color: var(--footer-light-text);
    margin-right: 15px;
    transition: color 0.3s;
}

.bottom-links a:hover {
    color: var(--primary-color);
}

.social-icons-bottom a {
    color: var(--white);
    font-size: 1.2em;
    margin-left: 10px;
    transition: color 0.3s;
}

.social-icons-bottom a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    background-color: var(--footer-bg);
    color: var(--footer-light-text);
    padding: 15px 20px;
    text-align: center;
    font-size: 0.8em;
}

/* ===========================================================
    RESPONSIVO - MOBILE
    =========================================================== */

/* Tablet - 768px a 1024px */
@media (max-width: 1024px) {
    .navbar {
        padding: 15px 25px;
    }

    .nav-links {
        gap: 25px;
    }

    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .cases-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 70px 30px;
    }

    .vantagens .itens-container {
        flex-direction: column;
        gap: 40px;
    }

    .vantagens .itens-container .item-1 {
        order: 2;
    }

    .vantagens .itens-container .item-2 {
        order: 1;
    }
}

/* Mobile - até 768px */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .navbar {
        padding: 12px 20px;
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .cta-button {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
        border-radius: 12px;
        margin-bottom: 8px;
        background: rgba(255, 255, 255, 0.03);
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background: linear-gradient(90deg, rgba(1, 97, 217, 0.2), rgba(0, 34, 136, 0.2));
        transform: translateX(8px);
    }

    .nav-links li a::after {
        display: none;
    }

    /* Hero Mobile */
    section.inicio {
        min-height: 85vh;
        height: auto;
        padding-top: 20%;
    }

    .inicio .txt-inicio {
        width: 90%;
        margin-top: 15vh;
        padding: 0 20px;
        text-align: center;
    }

    .inicio .txt-inicio h1 {
        font-weight: 700;
    }

    .buttons-container {
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
        width: 100%;
    }

    .inicio button,
    .buttons-container .whats {
        width: 100%;
        height: 55px;
        margin-right: 0;
        border-radius: 12px;
        font-size: 1em;
    }

    .buttons-container .whats::before {
        border-radius: 12px;
    }

    .buttons-container span {
        -webkit-text-fill-color: #ffffff;
        color: #ffffff;
    }

    /* Cards Mobile */
    .oqfazemos {
        padding: 80px 15px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
    }

    .card {
        min-height: 320px;
        padding: 40px 25px;
    }

    .icon-wrapper {
        width: 85px;
        height: 85px;
    }

    .card i {
        font-size: 2.5rem;
    }

    /* Vantagens Mobile */
    .vantagens .itens-container {
        text-align: center;
    }

    .vantagens .itens-container .img-itens img {
        max-width: 100%;
        box-shadow: 10px 10px #0052D4;
    }

    /* Como Funciona Mobile */
    .txt-funciona,
    .instrucoes {
        display: block;
        width: 100%;
    }

    .como-funciona .txt-funciona {
        position: static;
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .instrucoes .instru-box {
        height: auto;
        min-height: 250px;
        margin-left: 0;
        margin-bottom: 25px;
        flex-direction: column;
        text-align: center;
    }

    .instrucoes .primary-btn {
        width: 100%;
        margin-top: 40px;
    }

    /* Cases Mobile */
    .cases {
        padding: 80px 15px;
    }

    .cases-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 20px 10px;
    }

    .image-wrapper {
        height: 240px;
    }

    .case-info {
        padding: 60px 25px 30px;
    }

    .case-card:hover .image-wrapper {
        transform: translateY(-25px) scale(1.03);
    }

    .cases .primary-btn {
        width: 100%;
        max-width: 350px;
        height: 60px;
        font-size: 1rem;
    }

    /* Feedback Mobile */
    .carousel-container {
        padding: 0 20px;
    }

    .carde {
        min-width: 300px;
    }

    /* Form Mobile */
    .form-orcamento {
        height: auto;
        padding: 60px 20px;
    }

    .form-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .duplo-input {
        flex-direction: column;
    }

    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }

    .footer-section {
        width: 100%;
        margin: 15px 0;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .bottom-links a {
        margin: 0 10px;
    }

    .whatsapp-fixed-button {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
        bottom: 20px;
        right: 20px;
    }
}

/* Mobile pequeno - até 480px */
@media (max-width: 480px) {
    .nav-logo img {
        max-height: 45px;
    }

    .nav-links {
        width: 260px;
        padding: 90px 20px 20px;
    }

    .nav-links li a {
        font-size: 1rem;
        padding: 14px 18px;
    }

    .interface {
        padding: 0 5%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .card {
        padding: 35px 20px;
        min-height: 300px;
    }

    .icon-wrapper {
        width: 75px;
        height: 75px;
    }

    .card i {
        font-size: 2.2rem;
    }

    .vantagens .itens-container .img-itens img {
        max-width: 280px;
    }

    .cases h1 {
        font-size: 2rem;
    }

    .cases-grid {
        gap: 50px;
    }

    .image-wrapper {
        height: 200px;
    }

    .case-info {
        padding: 50px 20px 25px;
    }

    .case-info h3 {
        font-size: 1.25rem;
    }

    .project-badge {
        font-size: 0.85rem;
        padding: 12px 24px;
    }
}