/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevenir overflow horizontal em todos os dispositivos */
html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

:root {
    --preto: #000000;
    --cinza: #484D4B;
    --verde: #658173;
    --branco: #FFFFFF;
    --cinza-escuro: #1a1a1a;
    --verde-escuro: #4a6157;
    --dourado: #D4AF37;
    --dourado-claro: #F4E4C1;
    --dourado-escuro: #B8941E;
    --branco-suave: #F8F9FA;
    --verde-militar: #4A5D4F;
    --verde-militar-escuro: #3A4D3F;
    --verde-militar-claro: #5A6D5F;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--branco);
    background-color: var(--preto);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header e Menu */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(101, 129, 115, 0.2);
}

.navbar {
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo span {
    color: var(--branco);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--branco);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--verde);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--verde);
}

/* WhatsApp Flutuante - Pulsando */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--branco);
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    animation: whatsappPulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 35px rgba(37, 211, 102, 0.8);
    }
}

/* Hero Section - Fundo Preto Moderno */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--preto);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--verde);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--verde);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: var(--verde);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(101, 129, 115, 0.2) 0%, rgba(101, 129, 115, 0.1) 100%);
    color: var(--verde);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(101, 129, 115, 0.3);
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3.0rem;
    font-weight: 800;
    line-height: 0.9;
    color: var(--branco);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--verde) 0%, var(--verde-escuro) 100%);
    color: var(--branco);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(101, 129, 115, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(101, 129, 115, 0.6);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--verde);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-video-container {
    position: relative;
    animation: fadeInRight 1s ease;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(101, 129, 115, 0.3);
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(101, 129, 115, 0.1) 100%);
    pointer-events: none;
}

/* Botão de som do vídeo */
.video-sound-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(101, 129, 115, 0.5);
    border-radius: 50%;
    color: var(--branco);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.video-sound-toggle:hover {
    background-color: var(--verde);
    border-color: var(--verde);
    transform: scale(1.1);
}

.video-sound-toggle.active {
    background-color: var(--verde);
    border-color: var(--verde);
}

/* Esconder controles do vídeo */
.hero-video::-webkit-media-controls {
    display: none !important;
}

.hero-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.hero-video::-webkit-media-controls-panel {
    display: none !important;
}

.hero-video::-webkit-media-controls-play-button {
    display: none !important;
}

.hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.hero-video::-moz-media-controls {
    display: none !important;
}

.hero-video::-ms-media-controls {
    display: none !important;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--verde);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--verde);
}

.section-tag.light {
    color: var(--verde);
}

.section-tag.light::before {
    background-color: var(--verde);
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--branco);
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.section-intro {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 800px;
}

.section-header.centered .section-intro {
    margin: 0 auto;
}

.section-header.centered .section-tag {
    padding-left: 0;
}

.section-header.centered .section-tag::before {
    display: none;
}

/* Seção O Escritório */
.escritorio {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--preto) 0%, var(--cinza-escuro) 100%);
}

.escritorio-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-bottom: 50px;
}

.escritorio-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--branco);
    margin-bottom: 25px;
    line-height: 1.7;
}

.escritorio-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.escritorio-features {
    position: relative;
}

.feature-box {
    background: linear-gradient(135deg, var(--verde) 0%, var(--verde-escuro) 100%);
    padding: 40px;
    border-radius: 20px;
    color: var(--branco);
    box-shadow: 0 20px 60px rgba(101, 129, 115, 0.3);
    border: 1px solid rgba(101, 129, 115, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

.feature-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.proposito-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.proposito-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: rgba(101, 129, 115, 0.1);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(101, 129, 115, 0.2);
}

.proposito-item:hover {
    transform: translateY(-5px);
    background: rgba(101, 129, 115, 0.15);
    box-shadow: 0 10px 30px rgba(101, 129, 115, 0.2);
}

.proposito-item i {
    color: var(--verde);
    font-size: 1.3rem;
    margin-top: 3px;
}

.proposito-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.escritorio-footer {
    font-size: 1.1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(101, 129, 115, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--verde);
}

/* Seção Dra. Angelina */
.angelina {
    padding: 120px 0;
    background-color: var(--preto);
}

.angelina .section-header h2 {
    color: var(--branco);
}

.angelina .subtitle {
    font-size: 1.3rem;
    color: var(--verde);
    font-weight: 600;
    font-style: italic;
    margin-top: 10px;
}

.angelina-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.angelina-image {
    position: sticky;
    top: 120px;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--verde) 0%, var(--verde-escuro) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 30px;
    box-shadow: 0 30px 80px rgba(101, 129, 115, 0.3);
    overflow: hidden;
    border: 2px solid rgba(101, 129, 115, 0.3);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.angelina-credentials {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.credential-item {
    display: flex;
    gap: 20px;
    align-items: center;
    background: rgba(101, 129, 115, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(101, 129, 115, 0.2);
    transition: all 0.3s;
}

.credential-item:hover {
    transform: translateX(10px);
    background: rgba(101, 129, 115, 0.15);
    box-shadow: 0 8px 30px rgba(101, 129, 115, 0.2);
}

.credential-item i {
    font-size: 2rem;
    color: var(--verde);
}

.credential-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 5px;
}

.credential-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.angelina-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--branco);
    margin-bottom: 25px;
    line-height: 1.8;
}

.angelina-text p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.experience-box {
    background: rgba(101, 129, 115, 0.1);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    border-left: 5px solid var(--verde);
    border: 1px solid rgba(101, 129, 115, 0.2);
}

.experience-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 20px;
}

.experience-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

/* Seção Áreas de Atuação */
.areas {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cinza-escuro) 0%, var(--preto) 100%);
}

.areas .section-header h2 {
    color: var(--branco);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.area-card {
    background: rgba(101, 129, 115, 0.05);
    padding: 45px 35px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid rgba(101, 129, 115, 0.2);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--verde) 0%, var(--verde-escuro) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.area-card:hover::before {
    transform: scaleX(1);
}

.area-card:hover {
    transform: translateY(-10px);
    background: rgba(101, 129, 115, 0.1);
    box-shadow: 0 20px 50px rgba(101, 129, 115, 0.3);
    border-color: var(--verde);
}

.area-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(101, 129, 115, 0.2) 0%, rgba(101, 129, 115, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--verde);
    margin-bottom: 25px;
    transition: all 0.3s;
}

.area-card:hover .area-icon {
    background: linear-gradient(135deg, var(--verde) 0%, var(--verde-escuro) 100%);
    color: var(--branco);
    transform: scale(1.1);
}

.area-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 18px;
    line-height: 1.3;
}

.area-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* Seção Equipe - Novo Layout Moderno */
.equipe {
    padding: 120px 0;
    background-color: var(--preto);
}

.equipe .container {
    max-width: 1400px;
}

.equipe .section-header h2 {
    color: var(--branco);
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.equipe-card {
    background: linear-gradient(135deg, rgba(101, 129, 115, 0.1) 0%, rgba(101, 129, 115, 0.05) 100%);
    padding: 0;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(101, 129, 115, 0.2);
    overflow: hidden;
}

.equipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(101, 129, 115, 0.3);
    border-color: var(--verde);
}

.equipe-photo {
    width: 100%;
    height: 320px;
    margin: 0;
    background: linear-gradient(135deg, var(--verde) 0%, var(--verde-escuro) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    overflow: hidden;
    position: relative;
}

.equipe-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.equipe-card:hover .equipe-photo img {
    transform: scale(1.1);
}

.equipe-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--branco);
    margin: 25px 20px 12px;
    line-height: 1.4;
}

.cargo {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-weight: 400;
    padding: 0 20px 30px;
}

/* Seção Depoimentos */
.depoimentos {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--verde) 0%, var(--verde-escuro) 100%);
    color: var(--branco);
    position: relative;
    overflow: hidden;
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.depoimentos::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.depoimentos .section-header h2 {
    color: var(--branco);
}

.depoimentos .section-intro {
    color: rgba(255, 255, 255, 0.9);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.depoimento-card {
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.depoimento-card:hover {
    background-color: rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.depoimento-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.depoimento-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.cliente-nome {
    font-weight: 700;
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

/* Seção Contato */
.contato {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--preto) 0%, var(--cinza-escuro) 100%);
}

.contato .section-header h2 {
    color: var(--branco);
}

.contato-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-top: 60px;
}

.contato-form {
    background: rgba(101, 129, 115, 0.05);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(101, 129, 115, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--branco);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(101, 129, 115, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--branco);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--verde);
    box-shadow: 0 0 0 4px rgba(101, 129, 115, 0.2);
    background-color: rgba(0, 0, 0, 0.4);
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(101, 129, 115, 0.1);
    border-radius: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(101, 129, 115, 0.2);
}

.info-item:hover {
    background: rgba(101, 129, 115, 0.15);
    transform: translateX(5px);
}

.info-item i {
    font-size: 1.8rem;
    color: var(--verde);
    margin-top: 5px;
    min-width: 30px;
}

.info-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 8px;
}

.info-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.mapa {
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(101, 129, 115, 0.2);
}

.mapa iframe {
    filter: grayscale(30%) brightness(0.8);
}

/* Rodapé */
.footer {
    background-color: var(--preto);
    color: var(--branco);
    padding: 50px 0;
    border-top: 1px solid rgba(101, 129, 115, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(101, 129, 115, 0.2);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s;
    border: 1px solid rgba(101, 129, 115, 0.3);
}

.footer-social a:hover {
    background-color: var(--verde);
    transform: translateY(-5px);
    border-color: var(--verde);
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 50px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .escritorio-grid,
    .angelina-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .angelina-image {
        position: relative;
        top: 0;
    }

    .contato-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .navbar .container {
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        order: 4;
        margin-top: 20px;
        gap: 20px;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 20px;
        border-radius: 15px;
        border: 1px solid rgba(101, 129, 115, 0.3);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-intro {
        font-size: 1.05rem;
    }

    .escritorio,
    .angelina,
    .areas,
    .equipe,
    .depoimentos,
    .contato {
        padding: 80px 0;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .contato-form {
        padding: 35px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .stat-item {
        text-align: center;
    }

    .section-header h2 {
        font-size: 2.0rem;
    }

    .logo img {
        height: 80px;
    }

    .section-tag {
        font-size: 0.8rem;
        padding-left: 35px;
    }

    .section-tag::before {
        width: 25px;
    }

    .contato-form {
        padding: 25px;
    }

    .proposito-grid {
        grid-template-columns: 1fr;
    }

    .equipe-grid {
        grid-template-columns: 1fr;
    }
}

/* Animações de Scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mensagens do Formulário */
.form-message {
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.15);
    border: 2px solid rgba(40, 167, 69, 0.5);
    color: #28a745;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.15);
    border: 2px solid rgba(220, 53, 69, 0.5);
    color: #dc3545;
}

.form-message i {
    font-size: 1.5rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botão de envio com loading */
.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-primary .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Mensagens do Formulário */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    animation: slideDown 0.3s ease;
    transition: opacity 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message i {
    font-size: 20px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Query para Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 160px 0 60px;
    }
}

/* ========================================
   MELHORIAS COM DOURADO E BRANCO
   ======================================== */

/* Hero Badge com Dourado */
.hero-badge {
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-escuro) 100%) !important;
    border: 2px solid var(--dourado-claro) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}

.hero-badge i {
    color: var(--branco) !important;
}

.hero-badge span {
    color: var(--branco) !important;
    font-weight: 600 !important;
}

/* Títulos Principais com Destaque Dourado */
h1 {
    position: relative;
    padding-bottom: 20px;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--dourado) 0%, var(--dourado-claro) 100%);
    border-radius: 2px;
}

/* Section Tags com Dourado */
.section-tag {
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-escuro) 100%) !important;
    color: var(--preto) !important;
    font-weight: 700 !important;
    padding: 8px 24px !important;
    border-radius: 30px !important;
    display: inline-block !important;
    margin-bottom: 20px !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 13px !important;
}

.section-tag.light {
    background: var(--branco) !important;
    color: var(--dourado-escuro) !important;
    border: 2px solid var(--dourado) !important;
}

/* Estatísticas do Hero com Dourado */
.stat-number {
    color: var(--dourado) !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3) !important;
}

/* Botões Primários com Dourado */
.btn-primary {
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-escuro) 100%) !important;
    color: var(--preto) !important;
    border: 2px solid var(--dourado-claro) !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4) !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dourado-claro) 0%, var(--dourado) 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5) !important;
}

.btn-primary i {
    color: var(--preto) !important;
}

/* Cards de Área com Borda Dourada */
.area-card {
    border-top: 4px solid var(--dourado) !important;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%) !important;
    transition: all 0.3s ease !important;
}

.area-card:hover {
    border-top-color: var(--dourado-claro) !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2) !important;
    transform: translateY(-5px) !important;
}

.area-icon {
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-escuro) 100%) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}

.area-icon i {
    color: var(--preto) !important;
}

/* Cards da Equipe com Detalhes Dourados */
.equipe-card {
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
}

.equipe-card:hover {
    border-color: var(--dourado) !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2) !important;
}

.equipe-card h3 {
    color: var(--dourado-claro) !important;
}

.cargo {
    color: var(--branco-suave) !important;
}

/* Depoimentos com Fundo Preto e Detalhes Dourados */
.depoimentos {
    background: var(--preto) !important;
}

.depoimento-card {
    background: linear-gradient(135deg, rgba(74, 93, 79, 0.3) 0%, rgba(26, 26, 26, 0.8) 100%) !important;
    border-left: 4px solid var(--dourado) !important;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.depoimento-card:hover {
    background: linear-gradient(135deg, rgba(74, 93, 79, 0.4) 0%, rgba(26, 26, 26, 0.9) 100%) !important;
    border-color: var(--dourado) !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4) !important;
}

.depoimento-icon {
    color: var(--dourado) !important;
}

.depoimento-card p {
    color: var(--branco-suave) !important;
}

.cliente-nome {
    color: var(--dourado) !important;
    font-weight: 700 !important;
}

/* Ícones de Informação com Dourado */
.info-item i {
    color: var(--dourado) !important;
    background: rgba(212, 175, 55, 0.1) !important;
    padding: 15px !important;
    border-radius: 50% !important;
}

.info-item h3 {
    color: var(--dourado-claro) !important;
}

/* Propósito Items com Dourado */
.proposito-item i {
    color: var(--dourado) !important;
}

/* Feature Box com Destaque Dourado */
.feature-icon {
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-escuro) 100%) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}

.feature-icon i {
    color: var(--preto) !important;
}

/* Credenciais da Angelina com Dourado */
.credential-item i {
    color: var(--dourado) !important;
}

.credential-item strong {
    color: var(--dourado-claro) !important;
}

/* Experience Box com Borda Dourada */
.experience-box {
    border-left: 4px solid var(--dourado) !important;
    background: rgba(212, 175, 55, 0.05) !important;
}

.experience-box h3 {
    color: var(--dourado-claro) !important;
}

/* WhatsApp Float com Dourado */
.whatsapp-float {
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-escuro) 100%) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4) !important;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, var(--dourado-claro) 0%, var(--dourado) 100%) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5) !important;
}

.whatsapp-float i {
    color: var(--preto) !important;
}

/* Footer com Detalhes Dourados */
.footer {
    border-top: 3px solid var(--dourado) !important;
}

.footer-social a {
    border: 2px solid var(--dourado) !important;
    color: var(--dourado) !important;
    transition: all 0.3s ease !important;
}

.footer-social a:hover {
    background: var(--dourado) !important;
    color: var(--preto) !important;
    transform: translateY(-3px) !important;
}

/* Formulário com Detalhes Dourados */
.contato-form button[type="submit"] {
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-escuro) 100%) !important;
    color: var(--preto) !important;
    border: 2px solid var(--dourado-claro) !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4) !important;
}

.contato-form button[type="submit"]:hover {
    background: linear-gradient(135deg, var(--dourado-claro) 0%, var(--dourado) 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5) !important;
}

.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
    border-color: var(--dourado) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
}

/* Mensagens de Sucesso com Dourado */
.form-message.success {
    background-color: var(--dourado-claro) !important;
    color: var(--dourado-escuro) !important;
    border: 2px solid var(--dourado) !important;
}

.form-message.success i {
    color: var(--dourado-escuro) !important;
}

/* Seção Escritório com Fundo Branco Suave */
.escritorio {
    background: linear-gradient(135deg, var(--branco-suave) 0%, var(--branco) 100%) !important;
}

.escritorio h2,
.escritorio h3,
.escritorio .lead {
    color: var(--cinza-escuro) !important;
}

.escritorio p {
    color: var(--cinza) !important;
}

/* Seção Angelina com Detalhes Dourados */
.angelina-credentials {
    border-top: 3px solid var(--dourado) !important;
}

/* ========================================
   VERDE MILITAR EM FUNDOS E CARDS
   ======================================== */

/* Seção Áreas de Atuação com Fundo Preto */
.areas {
    background: var(--preto) !important;
}

/* Cards de Área com Verde Militar */
.area-card {
    background: linear-gradient(135deg, rgba(74, 93, 79, 0.4) 0%, rgba(58, 77, 63, 0.6) 100%) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.area-card:hover {
    background: linear-gradient(135deg, rgba(74, 93, 79, 0.6) 0%, rgba(58, 77, 63, 0.8) 100%) !important;
    border-color: var(--dourado) !important;
}

/* Seção Equipe com Fundo Verde Militar */
.equipe {
    background: linear-gradient(180deg, var(--verde-militar) 0%, var(--verde-militar-escuro) 100%) !important;
}

/* Cards da Equipe com Verde Militar */
.equipe-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(74, 93, 79, 0.3) 100%) !important;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    backdrop-filter: blur(10px);
}

.equipe-card:hover {
    background: linear-gradient(135deg, rgba(74, 93, 79, 0.5) 0%, rgba(26, 26, 26, 0.9) 100%) !important;
    border-color: var(--dourado) !important;
}

/* Seção Angelina com Detalhes Verde Militar */
.angelina {
    background: linear-gradient(135deg, var(--preto) 0%, var(--verde-militar-escuro) 50%, var(--preto) 100%) !important;
}

.angelina-image {
    border: 0px solid var(--dourado) !important;
    //box-shadow: 0 10px 40px rgba(74, 93, 79, 0.5) !important;
}

/* Experience Box com Fundo Verde Militar */
.experience-box {
    background: linear-gradient(135deg, rgba(74, 93, 79, 0.2) 0%, rgba(58, 77, 63, 0.3) 100%) !important;
    border-left: 4px solid var(--dourado) !important;
    border-radius: 8px;
    padding: 25px !important;
}

/* Credenciais com Fundo Verde Militar */
.angelina-credentials {
    background: linear-gradient(135deg, var(--verde-militar-escuro) 0%, var(--verde-militar) 100%) !important;
    border-top: 3px solid var(--dourado) !important;
    padding: 25px !important;
    border-radius: 10px;
}

.credential-item {
    background: rgba(0, 0, 0, 0.3) !important;
    padding: 15px !important;
    border-radius: 8px;
    border-left: 3px solid var(--dourado) !important;
}

/* Propósito Grid com Verde Militar */
.proposito-grid {
    background: linear-gradient(135deg, rgba(74, 93, 79, 0.1) 0%, rgba(58, 77, 63, 0.2) 100%) !important;
    padding: 30px !important;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.2) !important;
}

.proposito-item {
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 20px !important;
    border-radius: 8px;
    border-left: 3px solid var(--dourado) !important;
    transition: all 0.3s ease;
}

.proposito-item:hover {
    background: rgba(74, 93, 79, 0.3) !important;
    transform: translateX(5px);
}

/* Feature Box com Verde Militar */
.feature-box {
    background: linear-gradient(135deg, rgba(74, 93, 79, 0.2) 0%, rgba(58, 77, 63, 0.3) 100%) !important;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 10px;
    padding: 30px !important;
}

/* Seção Contato com Fundo Verde Militar */
.contato {
    background: linear-gradient(135deg, var(--verde-militar-escuro) 0%, var(--preto) 100%) !important;
}

.contato-info {
    background: linear-gradient(135deg, rgba(74, 93, 79, 0.3) 0%, rgba(58, 77, 63, 0.4) 100%) !important;
    padding: 40px !important;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
}

.info-item {
    background: rgba(0, 0, 0, 0.4) !important;
    padding: 20px !important;
    border-radius: 10px;
    border-left: 4px solid var(--dourado) !important;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(74, 93, 79, 0.4) !important;
    transform: translateX(5px);
}

/* Formulário com Fundo Verde Militar */
.contato-form {
    background: linear-gradient(135deg, rgba(74, 93, 79, 0.2) 0%, rgba(26, 26, 26, 0.8) 100%) !important;
    padding: 40px !important;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    backdrop-filter: blur(10px);
}

/* Hero com Overlay Verde Militar Sutil */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(74, 93, 79, 0.2) 100%);
    pointer-events: none;
}

/* Stats com Fundo Verde Militar */
.hero-stats {
    background: linear-gradient(135deg, rgba(74, 93, 79, 0.3) 0%, rgba(58, 77, 63, 0.4) 100%) !important;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 15px;
    padding: 30px 20px !important;
    backdrop-filter: blur(10px);
}

.stat-item {
    border-right: 2px solid rgba(212, 175, 55, 0.3) !important;
}

.stat-item:last-child {
    border-right: none !important;
}

/* Footer com Verde Militar */
.footer {
    background: linear-gradient(180deg, var(--verde-militar-escuro) 0%, var(--preto) 100%) !important;
    border-top: 3px solid var(--dourado) !important;
}

/* Mapa com Borda Verde Militar e Dourado */
.mapa iframe {
    border: 3px solid var(--dourado) !important;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(74, 93, 79, 0.5) !important;
}

/* Escritório Features com Verde Militar */
.escritorio-features {
    background: linear-gradient(135deg, rgba(74, 93, 79, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%) !important;
    padding: 30px !important;
    border-radius: 10px;
    border: 2px solid var(--dourado) !important;
}

/* ========================================
   CREDENTIALS BOX - SEÇÃO CEO
   ======================================== */

.credentials-box {
    background: linear-gradient(135deg, rgba(74, 93, 79, 0.2) 0%, rgba(58, 77, 63, 0.3) 100%) !important;
    border: 2px solid var(--dourado) !important;
    border-radius: 12px;
    padding: 35px !important;
    margin: 30px 0 !important;
}

.credentials-box h3 {
    color: var(--dourado) !important;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.credentials-box h3:not(:first-child) {
    margin-top: 35px;
}

.credentials-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credentials-list li {
    color: var(--branco-suave) !important;
    font-size: 16px;
    line-height: 1.8;
    padding: 12px 0;
    padding-left: 15px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.credentials-list li:hover {
    border-left-color: var(--dourado);
    padding-left: 25px;
    background: rgba(212, 175, 55, 0.05);
}

.credentials-list li i {
    color: var(--dourado) !important;
    font-size: 18px;
    min-width: 20px;
    margin-top: 3px;
}

/* Responsivo para Credentials Box */
@media (max-width: 768px) {
    .credentials-box {
        padding: 25px 20px !important;
    }
    
    .credentials-box h3 {
        font-size: 18px;
    }
    
    .credentials-list li {
        font-size: 14px;
        gap: 12px;
    }
}

/* ========================================
   CORREÇÕES MOBILE - FORMULÁRIO
   ======================================== */

/* Prevenir overflow horizontal GLOBAL */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

body {
    position: relative !important;
}

@media (max-width: 768px) {
    /* Container geral */
    .container {
        padding: 0 15px !important;
        max-width: 100vw !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Seção de contato */
    #contato,
    .contato {
        padding: 60px 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .contato-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Formulário - FORÇAR LARGURA */
    #contactForm,
    .contato-form,
    form {
        padding: 20px 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        border-width: 1px !important;
    }
    
    /* Inputs - FORÇAR LARGURA */
    .contato-form input,
    .contato-form select,
    .contato-form textarea,
    #contactForm input,
    #contactForm select,
    #contactForm textarea,
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    select,
    textarea {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        padding: 12px 10px !important;
        font-size: 16px !important;
        margin: 0 !important;
        border-width: 1px !important;
    }
    
    /* Labels */
    label {
        width: 100% !important;
        display: block !important;
        margin-bottom: 8px !important;
    }
    
    /* Botão submit */
    .contato-form button,
    .contato-form button[type="submit"],
    #contactForm button,
    button[type="submit"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px 10px !important;
        font-size: 16px !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }
    
    /* Form groups */
    .form-group,
    div[class*="form"] {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
        box-sizing: border-box !important;
    }
    
    /* Info de contato */
    .contato-info {
        padding: 20px 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        border-width: 1px !important;
    }
    
    .info-item {
        padding: 15px 10px !important;
        margin-bottom: 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Mapa */
    .mapa,
    .mapa iframe {
        width: 100% !important;
        max-width: 100% !important;
        height: 250px !important;
        box-sizing: border-box !important;
        border-width: 2px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px !important;
    }
    
    .contato-form,
    #contactForm {
        padding: 15px 10px !important;
    }
    
    .contato-info {
        padding: 15px 10px !important;
    }
    
    .section-header {
        padding: 0 5px !important;
    }
    
    .contato-form input,
    .contato-form select,
    .contato-form textarea {
        padding: 10px 8px !important;
    }
}

/* ========================================
   CORREÇÕES GERAIS MOBILE
   ======================================== */

@media (max-width: 768px) {
    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .hero-content,
    .hero-video-container {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Cards */
    .area-card,
    .equipe-card,
    .depoimento-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 20px 0 !important;
    }
    
    /* Grids */
    .areas-grid,
    .equipe-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Angelina section */
    .angelina-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .angelina-image,
    .angelina-text {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Credentials e Experience Box */
    .credentials-box,
    .experience-box {
        padding: 20px 15px !important;
        margin: 20px 0 !important;
    }
    
    /* Stats */
    .hero-stats {
        flex-direction: column !important;
        padding: 20px 15px !important;
    }
    
    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
        padding: 15px 0 !important;
    }
    
    .stat-item:last-child {
        border-bottom: none !important;
    }
    
    /* Botões */
    .btn-primary {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
    
    /* Navbar mobile */
    .nav-menu {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column !important;
        gap: 20px !important;
        text-align: center !important;
    }
    
    /* Proposito Grid */
    .proposito-grid {
        padding: 20px 15px !important;
    }
    
    .proposito-item {
        padding: 15px !important;
        margin-bottom: 15px !important;
    }
}
