:root {
    --primary-blue: #1A3FD4;
    --primary-dark: #0D1F6E;
    --accent-yellow: #FFD000;
    --accent-orange: #FF6B00;
    --accent-gradient: linear-gradient(135deg, #FFD000 0%, #FF6B00 100%);
    --blue-gradient: linear-gradient(135deg, #1A3FD4 0%, #0D1F6E 100%);
    --bg-body: #F4F7FF;
    --bg-white: #FFFFFF;
    --text-main: #1A202C;
    --text-muted: #64748B;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --container-width: 1200px;
    --header-height: 90px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(26, 63, 212, 0.12);
    --shadow-lg: 0 10px 40px rgba(26, 63, 212, 0.18);
    --shadow-hover: 0 20px 50px rgba(26, 63, 212, 0.22);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.7;
    background-color: var(--bg-body);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--blue-gradient);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-accent {
    background: var(--accent-gradient);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(255, 208, 0, 0.4);
    font-weight: 800;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary-dark);
}

/* Header */
.header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(26, 63, 212, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    height: 70px;
    box-shadow: 0 4px 30px rgba(26, 63, 212, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 155px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    line-height: 1.1;
    color: var(--primary-dark);
}

.logo-text span:last-child {
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-main);
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--accent-gradient);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-cta {
    background: var(--accent-gradient);
    color: var(--primary-dark) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.nav-cta::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-dark);
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.dropdown-arrow {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow,
.nav-item-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(13, 31, 110, 0.15);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    border: 1px solid rgba(26, 63, 212, 0.08);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu a i {
    width: 16px;
    text-align: center;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: rgba(26, 63, 212, 0.05);
    color: var(--primary-blue);
    padding-left: 24px;
}

.dropdown-divider {
    height: 1px;
    background: rgba(26, 63, 212, 0.08);
    margin: 8px 0;
}

/* Ponte invisível para evitar que o menu feche ao mover o mouse do link para o dropdown */
.nav-item-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 16px;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-item-dropdown:hover .nav-link::after,
.nav-item-dropdown.open .nav-link::after {
    width: 100%;
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 700px;
    /* iOS Safari: dvh evita o corte causado pela barra do browser */
    min-height: 100dvh;
    background-image: url('../assets/back_test.png');
    background-size: cover;
    background-position: center;
    /* background-attachment:fixed nao funciona no iOS Safari — removido */
    background-attachment: scroll;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 31, 110, 0.92) 0%, rgba(26, 63, 212, 0.75) 60%, rgba(13, 31, 110, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    padding-top: var(--header-height);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-gradient);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.05;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--accent-yellow);
}

.hero-description {
    font-size: 1.25rem;
    margin: 0 auto 2.5rem auto;
    opacity: 0.92;
    font-weight: 300;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-yellow);
}

.hero-stat .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Section Titles */
.section-label {
    display: inline-block;
    background: var(--accent-gradient);
    color: var(--primary-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title.white {
    background: none;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: 0;
    margin-right: 0;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* Cards */
.card-hover {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(26, 63, 212, 0.06);
    position: relative;
    overflow: hidden;
}

.card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-hover:hover::before {
    transform: scaleX(1);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(26, 63, 212, 0.1), rgba(26, 63, 212, 0.06));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.card-hover:hover .service-icon {
    background: var(--blue-gradient);
    color: #fff;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.learn-more {
    color: var(--primary-blue);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.learn-more:hover {
    gap: 14px;
    color: var(--accent-orange);
}

/* Service Mini Card */
.service-mini-card {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 63, 212, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.service-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.service-mini-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(26, 63, 212, 0.1), rgba(13, 31, 110, 0.08));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-blue);
}

.service-mini-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.service-mini-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* About Section */
.bg-light {
    background-color: #fff;
    position: relative;
}

.bg-blue {
    background: var(--blue-gradient);
    position: relative;
    overflow: hidden;
}

.bg-blue::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.col-half {
    flex: 1;
    min-width: 300px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 1rem;
    color: var(--text-main);
}

.feature-list i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-top: 2px;
}

.about-visual {
    background: var(--blue-gradient);
    height: 480px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    gap: 16px;
}

.about-visual::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.about-visual::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: rgba(255, 208, 0, 0.08);
    border-radius: 50%;
}

.about-visual i {
    font-size: 6rem;
    color: var(--accent-yellow);
    filter: drop-shadow(0 4px 12px rgba(255, 208, 0, 0.4));
}

.about-visual span {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--blue-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 8px 20px rgba(26, 63, 212, 0.35);
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(26, 63, 212, 0.4), transparent);
    transform: translateY(-50%);
}

.process-grid .process-step:last-child .step-number::after {
    display: none;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Band */
.cta-band {
    background: var(--accent-gradient);
    padding: 60px 0;
    text-align: center;
}

.cta-band h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    -webkit-text-fill-color: var(--primary-dark);
}

.cta-band p {
    color: rgba(13, 31, 110, 0.8);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Contact */
.contact-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--blue-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.whatsapp-box {
    background: var(--blue-gradient);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.whatsapp-box i.fa-whatsapp {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 12px rgba(37, 211, 102, 0.4));
}

.whatsapp-box h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #fff;
}

.whatsapp-box p {
    opacity: 0.85;
    margin-bottom: 24px;
}

/* CTA Contact Box */
.cta-contact-box {
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    padding: 48px 40px;
    text-align: center;
    color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 340px;
}

.cta-contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(13, 31, 110, 0.3);
}

.cta-contact-icon i {
    font-size: 2.2rem;
    color: #25D366;
}

.cta-contact-box h3 {
    font-size: 1.7rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    -webkit-text-fill-color: var(--primary-dark);
}

.cta-contact-box>p {
    color: rgba(13, 31, 110, 0.75);
    margin-bottom: 28px;
    font-size: 1rem;
}

.cta-contact-phone {
    margin-top: 18px !important;
    margin-bottom: 0 !important;
    font-weight: 700;
    font-size: 1rem !important;
    color: var(--primary-dark) !important;
    opacity: 0.7;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 180px;
    margin-bottom: 16px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 28px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 36px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.55);
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--accent-yellow);
    padding-left: 6px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
}

.contact-info i {
    color: var(--accent-yellow);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-gradient);
    color: var(--primary-dark);
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.88rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 36px;
    right: 36px;
    background: #25D366;
    color: #fff;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-green 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 10px 40px rgba(37, 211, 102, 0.8), 0 0 0 12px rgba(37, 211, 102, 0.1);
    }
}

/* About work image */
.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 480px;
}

.about-work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-img-wrap:hover .about-work-img {
    transform: scale(1.03);
}

/* WhatsApp button – green so icon is always visible */
.btn-wpp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: var(--font-body);
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.btn-wpp i {
    font-size: 1.2rem;
    line-height: 1;
}

.btn-wpp:hover {
    background: #1ebe59;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
}

/* Utilities */
.mb-20 {
    margin-bottom: 20px;
}

.mt-30 {
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 16px;
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Dropdown responsive rules */
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 4px 0 4px 16px;
        min-width: auto;
        display: none; /* Oculta por padrão no mobile */
        background: rgba(26, 63, 212, 0.04);
        border-radius: var(--radius-sm);
        margin-top: 8px;
    }

    .dropdown-menu a {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .dropdown-menu a:hover {
        padding-left: 20px;
        background: transparent;
    }

    /* Desativa comportamento de hover no mobile */
    .nav-item-dropdown:hover .dropdown-menu {
        display: none;
    }

    /* Abre o menu apenas ao clicar (adiciona classe .open) */
    .nav-item-dropdown.open .dropdown-menu {
        display: block;
    }

    .hero {
        height: auto;
        min-height: 100svh;
        padding-bottom: 40px;
    }

    .hero-content {
        padding-top: calc(var(--header-height) + 40px);
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 36px;
        padding-top: 24px;
        justify-content: center;
    }

    .hero-stat {
        flex: 0 0 calc(33% - 16px);
        min-width: 80px;
        text-align: center;
    }

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

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

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

    .row {
        gap: 30px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 58px;
        height: 58px;
        font-size: 26px;
    }

    .process-step .step-number::after {
        display: none;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Service Details Additions */
.service-detail {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(26, 63, 212, 0.08);
}
.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.service-detail.reverse {
    flex-direction: row-reverse;
}
.service-detail-visual {
    flex: 0 0 380px;
    height: 300px;
    border-radius: var(--radius-lg);
    background: var(--blue-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.service-detail-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.service-detail-visual span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 15px;
    background: linear-gradient(to top, rgba(13, 31, 110, 0.95) 0%, rgba(13, 31, 110, 0) 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}
.service-detail:hover .service-detail-visual {
    box-shadow: var(--shadow-hover);
}
.service-detail:hover .service-detail-img {
    transform: scale(1.05);
}
.service-detail-text h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}
.service-detail-text p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
        gap: 30px;
    }
    .service-detail-visual {
        flex: none;
        width: 100%;
        height: 220px;
    }
}