/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais - baseadas em tons terapêuticos (ajustar conforme logo) */
    --primary-color: #1a4b8c;
    --primary-dark: #0a2b4e;
    --primary-light: #2c7be5;
    --secondary-color: #059669;
    --secondary-dark: #047857;
    --accent-color: #00b4d8;
    --light-blue: #e6f3ff;
    --bg-accent: #ebf8ff;
    --text-dark: #1f2937;
    --text-gray: #4a5568;
    --text-light: #6b7280;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --border-dark: #cbd5e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Google Fonts - removido @import para melhor performance, carregado via link no HTML */

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
    position: relative;
    gap: 4rem;
}

.logo img {
    height: 65px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-phone:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.hero-logo img {
    max-width: 220px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-whatsapp-lg {
    background: #25d366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
}

.btn-whatsapp-lg:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-block {
    width: 100%;
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
}

.section-title .highlight {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.bg-light {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--bg-accent) 100%);
}

/* Section Gradient */
.section-gradient {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--bg-accent) 100%);
}

/* Section Title Decoration */
.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* About Preview */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.card-icon {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.card-icon .icon-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-card:hover .card-icon .icon-svg {
    transform: scale(1.05);
}

.about-card h3 {
    font-size: 1.625rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Units Preview */
.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.unit-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.unit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

/* Unit Slider Styles */
.unit-slider {
    position: relative;
    width: 100%;
}

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

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.slider-image.active {
    position: relative;
    opacity: 1 !important;
}

.slider-prev,
.slider-next {
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.4) !important;
}

.unit-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    margin-top: 2px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    color: var(--primary-color);
    flex-shrink: 0;
}

.unit-card .space-y-2 > * + *,
.unit-card .space-y-3 > * + * {
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .unit-card .space-y-3 > * + * {
        margin-top: 0.75rem;
    }
}

.unit-card .text-left {
    text-align: left;
}

.unit-card .flex {
    display: flex;
}

.unit-card .items-start {
    align-items: flex-start;
}

.unit-card .w-full {
    width: 100%;
}

.unit-card .mt-3 {
    margin-top: 0.75rem;
}

@media (min-width: 640px) {
    .unit-card .mt-4 {
        margin-top: 1rem;
    }
    
    .unit-card .p-5 {
        padding: 1.25rem;
    }
}

.unit-card .p-4 {
    padding: 1rem;
}

.unit-card .text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.unit-card .text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.unit-card .font-semibold {
    font-weight: 600;
}

.unit-card .text-gray-800 {
    color: #1f2937;
}

.unit-card .text-gray-600 {
    color: #4b5563;
}

.unit-card .mb-1 {
    margin-bottom: 0.25rem;
}

.unit-card .drop-shadow-lg {
    filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
}

.unit-card .drop-shadow-md {
    filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
}

.unit-card .backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.unit-card .gap-1 {
    gap: 0.25rem;
}

.unit-card .absolute {
    position: absolute;
}

.unit-card .inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.unit-card .top-2 {
    top: 0.5rem;
}

.unit-card .right-2 {
    right: 0.5rem;
}

.unit-card .bottom-0 {
    bottom: 0;
}

.unit-card .left-0 {
    left: 0;
}

.unit-card .right-0 {
    right: 0;
}

.unit-card .h-64 {
    height: 16rem;
}

.unit-card .overflow-hidden {
    overflow: hidden;
}

.unit-card .relative {
    position: relative;
}

.unit-card .w-full {
    width: 100%;
}

.unit-card .h-full {
    height: 100%;
}

.unit-card .object-cover {
    object-fit: cover;
}

.unit-card .transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.unit-card .duration-500 {
    transition-duration: 500ms;
}

.unit-card .opacity-0 {
    opacity: 0;
}

.unit-card .text-white {
    color: #ffffff;
}

.unit-card .text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.unit-card .font-bold {
    font-weight: 700;
}

.unit-card .mb-1 {
    margin-bottom: 0.25rem;
}

.unit-card .font-medium {
    font-weight: 500;
}

.unit-card .p-4 {
    padding: 1rem;
}

.unit-card .rounded-full {
    border-radius: 9999px;
}

.unit-card .flex {
    display: flex;
}

.unit-card .items-center {
    align-items: center;
}

.unit-card .justify-center {
    justify-content: center;
}

.unit-card .w-8 {
    width: 2rem;
}

.unit-card .h-8 {
    height: 2rem;
}

.unit-card .bg-white\/20 {
    background-color: rgba(255, 255, 255, 0.2);
}

.unit-card .hover\:bg-white\/40:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.unit-card .transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.btn-whatsapp-icon {
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    padding: 1.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.team-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.team-card p {
    color: var(--text-gray);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-gray);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 10rem 0 5rem;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 1.375rem;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* About Content */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.about-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.method-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.method-content a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-credit {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: white;
    text-decoration: underline;
}

/* Security Badge */
.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(20, 83, 45, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
}

.security-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

.security-icon svg {
    color: white;
    width: 24px;
    height: 24px;
}

.security-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.security-title {
    color: #22c55e;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

.security-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.2;
}

/* Hero Description */
.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.75;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Subtitle */
.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.area-item {
    background: white;
    padding: 2rem 1.25rem;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.area-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 75, 140, 0.03) 0%, rgba(5, 150, 105, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.area-item:hover::before {
    opacity: 1;
}

.area-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    border-left-width: 5px;
}

.area-icon {
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: auto;
    margin-right: auto;
}

.area-icon .icon-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.area-item:hover .area-icon {
    transform: scale(1.15);
}

.area-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.area-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Services Grid - Novo Design */
.services-grid .service-card-new {
    grid-column: auto;
}

.service-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item:hover::after {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.service-icon .icon-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-item:hover .service-icon {
    transform: scale(1.1) translateY(-5px);
}

.service-item:hover .service-icon .icon-svg {
    transform: scale(1.05);
}

.service-item h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-item p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* Missão Principal Card */
.mission-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mission-card h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.mission-card p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.mission-highlight {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

/* About Cards Grid */
.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.about-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.about-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #1e3a8a;
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.card-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.about-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.about-info-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.card-highlight {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
    color: #1e3a8a;
    font-size: 1.05rem;
}

/* Services Cards - Novo Design */
.service-card-new {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #1e3a8a;
}

.service-icon-new {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.25rem;
}

.service-icon-new svg {
    width: 24px;
    height: 24px;
}

.service-card-new h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.service-card-new p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Lists Styling - Novo */
.environment-list-new,
.why-list-new {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.environment-list-new li,
.why-list-new li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
}

.environment-list-new li::before,
.why-list-new li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.environment-list-new li::after,
.why-list-new li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 0.5rem;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cobertura e Destaques */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.coverage-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #1e3a8a;
}

.coverage-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
}

.coverage-icon svg {
    width: 32px;
    height: 32px;
}

.coverage-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.coverage-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Áreas de Atuação - Novo Design */
.areas-atuacao-section {
    padding: 60px 0;
}

.areas-atuacao-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Ajustar para 2 colunas quando houver 6 itens (3+3) */
.areas-atuacao-grid .area-card-new:nth-child(4) {
    grid-column: 1;
}

.areas-atuacao-grid .area-card-new:nth-child(5) {
    grid-column: 2;
}

.areas-atuacao-grid .area-card-new:nth-child(6) {
    grid-column: 3;
}

.area-card-new {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
}

.area-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: #1e3a8a;
}

.area-icon-new {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background: #1e3a8a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.area-icon-new svg {
    width: 20px;
    height: 20px;
    stroke-width: 3;
}

.area-card-new h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    padding-left: 3.5rem;
    padding-top: 0.5rem;
}

.area-card-new p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    padding-left: 3.5rem;
    line-height: 1.6;
}

/* Lists Styling */
.areas-list,
.services-list,
.environment-list,
.why-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.areas-list li,
.services-list li,
.environment-list li,
.why-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    position: relative;
}

.areas-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.services-list li::before,
.environment-list li::before,
.why-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

/* Schedule Section */
.schedule-content {
    max-width: 900px;
    margin: 0 auto;
}

.schedule-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.schedule-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.schedule-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease;
}

.schedule-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.schedule-item:hover .schedule-icon {
    transform: scale(1.1) rotate(5deg);
}

.schedule-item h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
    letter-spacing: -0.01em;
}

.schedule-intro {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.8;
    font-weight: 400;
}

.schedule-item h3 {
    font-size: 1.625rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
}

.schedule-item h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.schedule-item > p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.rules-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.rules-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    position: relative;
}

.rules-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.rules-list li strong {
    color: var(--text-dark);
}

.schedule-hours {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--bg-accent) 100%);
    padding: 1.75rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}

.schedule-hours h3 {
    margin-top: 0;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-size: 1.375rem;
    font-weight: 600;
}

.schedule-hours h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.schedule-hours p {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.schedule-hours p strong {
    color: var(--primary-color);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.hours-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.hours-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-left-width: 5px;
}

.hours-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.hours-time {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.schedule-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin-top: 2rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.schedule-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.schedule-contact > * {
    position: relative;
    z-index: 2;
}

.schedule-contact-icon {
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.schedule-contact-icon .icon-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.schedule-contact:hover .schedule-contact-icon {
    transform: scale(1.1);
}

.schedule-contact h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    margin-top: 0;
}

.schedule-contact .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1.25rem 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.schedule-contact .btn:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.schedule-contact .btn svg {
    fill: var(--primary-color);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-accent);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
    background: white;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars .star {
    color: #fbbf24;
    font-size: 1.5rem;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Responsive - Tablets (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }

    .header-content {
        gap: 2.5rem;
    }

    .logo img {
        height: 60px;
    }

    .section {
        padding: 4rem 0;
    }

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

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

    .hero {
        min-height: 550px;
    }

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

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .coverage-card {
        padding: 2rem 1.5rem;
    }

    .coverage-card h3 {
        font-size: 1.25rem;
    }

    .coverage-card p {
        font-size: 0.95rem;
    }

    .areas-atuacao-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .areas-atuacao-grid .area-card-new:nth-child(4) {
        grid-column: 1;
    }

    .areas-atuacao-grid .area-card-new:nth-child(5) {
        grid-column: 2;
    }

    .areas-atuacao-grid .area-card-new:nth-child(6) {
        grid-column: 1;
    }

    .about-cards-grid {
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header {
        padding: 8rem 0 4rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .page-header p {
        font-size: 1.25rem;
    }

    .mission-card {
        padding: 2.5rem;
    }

    .mission-card h2 {
        font-size: 2rem;
    }

    #map {
        height: 500px !important;
    }

    .contact-wrapper {
        gap: 3rem;
    }

    .header-content {
        gap: 2rem;
    }

    .nav-list {
        gap: 1.5rem;
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* Responsive - Mobile (até 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .header {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: space-between;
    }

    .logo {
        order: 1;
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 50px;
    }

    .nav {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 1rem;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .nav-link {
        padding: 0.5rem 0;
        display: block;
    }

    .header-actions {
        position: static;
        transform: none;
        order: 2;
    }

    .btn-phone {
        width: 36px;
        height: 36px;
    }

    .btn-phone svg {
        width: 18px;
        height: 18px;
    }

    .btn-whatsapp {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .btn-whatsapp svg {
        width: 16px;
        height: 16px;
    }

    .hero-logo img {
        max-width: 180px;
    }

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

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero {
        min-height: 500px;
        height: auto;
        padding: 4rem 0 2rem;
        margin-top: 60px;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-logo {
        margin-bottom: 1.5rem;
    }

    .header-actions {
        position: static;
        transform: none;
        margin-left: auto;
    }

    .header-content {
        justify-content: space-between;
        padding: 0.5rem 0;
    }

    .schedule-item {
        padding: 1.5rem;
    }

    .schedule-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .schedule-item h2 {
        font-size: 1.75rem;
    }

    .schedule-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .schedule-item h3 {
        font-size: 1.25rem;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .schedule-contact {
        padding: 2rem 1.5rem;
    }

    .schedule-contact-icon {
        font-size: 2.5rem;
    }

    .schedule-contact h3 {
        font-size: 1.25rem;
    }

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

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

    .testimonial-card {
        padding: 1.5rem;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .area-item {
        padding: 1.25rem 0.75rem;
    }

    .area-item h3 {
        font-size: 1rem;
    }

    .area-item p {
        font-size: 0.85rem;
    }

    .area-icon {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .coverage-card {
        padding: 2rem 1.5rem;
    }

    .coverage-icon {
        width: 56px;
        height: 56px;
    }

    .coverage-icon svg {
        width: 28px;
        height: 28px;
    }

    .coverage-card h3 {
        font-size: 1.25rem;
    }

    .coverage-card p {
        font-size: 0.95rem;
    }

    .areas-atuacao-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .area-card-new {
        padding: 1.5rem 1.25rem;
    }

    .area-card-new h3 {
        font-size: 1.1rem;
        padding-left: 3rem;
    }

    .area-card-new p {
        font-size: 0.9rem;
        padding-left: 3rem;
    }

    .area-icon-new {
        width: 36px;
        height: 36px;
        top: 0.75rem;
        left: 0.75rem;
    }

    .area-icon-new svg {
        width: 18px;
        height: 18px;
    }

    .mission-card {
        padding: 2rem 1.5rem;
    }

    .mission-card h2 {
        font-size: 1.75rem;
    }

    .mission-card p {
        font-size: 1rem;
    }

    .mission-highlight {
        font-size: 1.1rem;
    }

    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-info-card {
        padding: 1.75rem;
    }

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

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

    .service-item {
        padding: 1rem;
        border-radius: 12px;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 0.875rem;
        border: 1px solid rgba(0, 0, 0, 0.06);
        background: white;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .service-item::after {
        display: none;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(26, 75, 140, 0.08) 0%, rgba(5, 150, 105, 0.08) 100%);
        border-radius: 10px;
        padding: 10px;
        filter: none;
        transition: none;
    }

    .service-icon .icon-svg {
        width: 28px;
        height: 28px;
        filter: none;
        object-fit: contain;
    }

    .service-item:hover .service-icon {
        transform: none;
    }

    .service-item:hover {
        transform: none;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        border-color: rgba(26, 75, 140, 0.15);
    }

    .service-item h3 {
        font-size: 0.9375rem;
        font-weight: 600;
        margin-bottom: 0.125rem;
        line-height: 1.3;
        color: var(--text-dark);
    }

    .service-item p {
        font-size: 0.8125rem;
        color: var(--text-light);
        line-height: 1.4;
        margin: 0;
    }

    .service-card-new {
        padding: 1.5rem 1.25rem;
    }

    .service-card-new h3 {
        font-size: 1.1rem;
    }

    .service-card-new p {
        font-size: 0.9rem;
    }

    .service-icon-new {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .service-icon-new svg {
        width: 20px;
        height: 20px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.75rem;
    }

    .contact-form h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.75rem;
    }

    .contact-methods {
        gap: 1rem;
    }

    .contact-method {
        padding: 1rem;
    }

    .security-badge {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.75rem;
    }

    .security-icon {
        width: 40px;
        height: 40px;
    }

    .security-icon svg {
        width: 20px;
        height: 20px;
    }

    .security-title {
        font-size: 1rem;
    }

    .security-subtitle {
        font-size: 0.85rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .page-header {
        padding: 6rem 0 3rem;
        margin-top: 60px;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .mission-card {
        padding: 1.5rem;
    }

    .mission-card h2 {
        font-size: 1.5rem;
    }

    .mission-card p {
        font-size: 0.95rem;
    }

    .mission-highlight {
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-card {
        padding: 1.75rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-card {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    #map {
        height: 400px !important;
        border-radius: 8px !important;
    }

    .areas-map-section {
        padding: 3rem 0;
    }

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

/* Responsive - Mobile Pequeno (até 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .section {
        padding: 2.5rem 0;
    }

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

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

    .hero {
        min-height: 450px;
        height: auto;
        padding: 3rem 0 2rem;
        margin-top: 55px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-logo {
        margin-bottom: 1rem;
    }

    .hero-logo img {
        max-width: 150px;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .header-content {
        padding: 0.5rem 0;
    }

    .logo img {
        height: 45px;
    }

    .btn-phone {
        width: 36px;
        height: 36px;
    }

    .btn-phone svg {
        width: 16px;
        height: 16px;
    }

    .btn-whatsapp {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
    }

    .page-header {
        padding: 5rem 0 2.5rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .mission-card {
        padding: 1.25rem;
    }

    .mission-card h2 {
        font-size: 1.25rem;
    }

    .mission-card p {
        font-size: 0.9rem;
    }

    .about-info-card {
        padding: 1.5rem;
    }

    .about-info-card h3 {
        font-size: 1.1rem;
    }

    .service-item {
        padding: 0.875rem 0.75rem;
        gap: 0.75rem;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        padding: 8px;
        border-radius: 8px;
    }

    .service-icon .icon-svg {
        width: 24px;
        height: 24px;
    }

    .service-item h3 {
        font-size: 0.875rem;
        margin-bottom: 0.125rem;
    }

    .service-item p {
        font-size: 0.75rem;
    }

    .card-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .card-icon-wrapper svg {
        width: 28px;
        height: 28px;
    }

    .service-item {
        padding: 0.875rem 0.75rem;
        gap: 0.75rem;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        padding: 8px;
        border-radius: 8px;
    }

    .service-icon .icon-svg {
        width: 24px;
        height: 24px;
    }

    .service-item h3 {
        font-size: 0.875rem;
        margin-bottom: 0.125rem;
    }

    .service-item p {
        font-size: 0.75rem;
    }

    .service-card-new {
        padding: 1.25rem 1rem;
    }

    .service-card-new h3 {
        font-size: 1rem;
    }

    .service-card-new p {
        font-size: 0.85rem;
    }

    .service-icon-new {
        width: 44px;
        height: 44px;
    }

    .area-card-new {
        padding: 1.25rem 1rem;
    }

    .area-card-new h3 {
        font-size: 1rem;
        padding-left: 2.75rem;
    }

    .area-card-new p {
        font-size: 0.85rem;
        padding-left: 2.75rem;
    }

    .area-icon-new {
        width: 32px;
        height: 32px;
        top: 0.75rem;
        left: 0.75rem;
    }

    .area-icon-new svg {
        width: 16px;
        height: 16px;
    }

    .about-card {
        padding: 1.5rem;
    }

    .about-card h3 {
        font-size: 1.25rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }

    #map {
        height: 350px !important;
    }

    .chat-popup {
        width: calc(100vw - 20px);
        max-width: none;
    }

    .chat-toggle {
        width: 50px;
        height: 50px;
    }

    .chat-toggle svg {
        width: 24px;
        height: 24px;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-form h2 {
        font-size: 1.25rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-info p {
        font-size: 0.95rem;
    }

    .contact-method {
        padding: 0.875rem;
    }

    .method-icon {
        width: 40px;
        height: 40px;
    }

    .method-icon svg {
        width: 20px;
        height: 20px;
    }

    .method-content h3 {
        font-size: 1rem;
    }

    .method-content a {
        font-size: 0.9rem;
    }

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

    .cta-section {
        padding: 2.5rem 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .footer-logo {
        max-width: 150px;
    }
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: inherit;
}

.chat-popup {
    position: absolute;
    bottom: 55px;
    right: 0;
    width: 340px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
    overflow: hidden;
}

.chat-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

@media (max-width: 768px) {
    .chat-header {
        padding-top: 4rem;
        padding-bottom: 1rem;
    }
}

.chat-profile {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.chat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.chat-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.chat-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
}

.chat-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0 0 0.5rem 0;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #22c55e;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

    .chat-close {
        background: none;
        border: none;
        cursor: pointer;
        color: var(--text-dark);
        padding: 0.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.05);
    }

    .chat-close:hover {
        color: var(--primary-color);
        background: rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 768px) {
        .chat-close {
            width: 44px;
            height: 44px;
            background: rgba(0, 0, 0, 0.08);
            position: absolute;
            top: calc(1rem + env(safe-area-inset-top));
            top: calc(1rem + max(0px, env(safe-area-inset-top)));
            right: 1rem;
            z-index: 10001;
            margin: 0;
        }

        .chat-close svg {
            width: 24px;
            height: 24px;
        }

        .chat-close:active {
            transform: scale(0.95);
            background: rgba(0, 0, 0, 0.15);
        }

        .chat-header {
            padding-top: calc(4rem + env(safe-area-inset-top));
            padding-top: calc(4rem + max(0px, env(safe-area-inset-top)));
        }
    }

.chat-content {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.chat-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.chat-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

/* Chat Messages */
.chat-messages {
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100px;
    flex: 1;
}

@media (max-width: 768px) {
    .chat-messages {
        max-height: none;
        flex: 1;
        overflow-y: auto;
    }
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    animation: fadeInMessage 0.3s ease-out;
}

@keyframes fadeInMessage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-received {
    flex-direction: row;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.message-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-bubble {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 75%;
    position: relative;
}

.message-bubble::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 12px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid white;
}

.message-bubble p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.typing-bubble {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: auto;
    min-width: 50px;
}

.typing-indicator .message-bubble {
    padding: 0.75rem 1rem;
}

.chat-typing {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    padding: 0;
}

.chat-typing span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9ca3af;
    display: inline-block;
    animation: typing 1.4s infinite;
}

.chat-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.chat-footer {
    padding: 1.5rem;
    background: #f9fafb;
}

.chat-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    margin-bottom: 0.75rem;
}

.chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.chat-button svg {
    flex-shrink: 0;
}

.chat-priority {
    text-align: center;
    font-size: 0.85rem;
    color: #f97316;
    font-weight: 600;
    margin: 0;
}

.chat-toggle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
    transition: all 0.3s ease;
    z-index: 10000;
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.5);
}

.chat-toggle svg {
    width: 32px;
    height: 32px;
}

.chat-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid white;
    display: block;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}


/* Responsive Chat Widget */
@media (max-width: 768px) {
    .chat-widget {
        bottom: 15px;
        right: 15px;
    }

    .chat-popup {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height para mobile */
        max-width: none;
        border-radius: 0;
        box-shadow: none;
        z-index: 10000;
        padding-top: env(safe-area-inset-top);
        padding-top: max(0px, env(safe-area-inset-top));
        padding-bottom: env(safe-area-inset-bottom);
        padding-bottom: max(0px, env(safe-area-inset-bottom));
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .chat-popup.active {
        transform: translateY(0) scale(1);
    }

    .chat-toggle {
        width: 56px;
        height: 56px;
    }

    .chat-toggle svg {
        width: 28px;
        height: 28px;
    }
}

/* Animações Suaves */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Aplicar animações aos elementos */
.about-card,
.area-item,
.service-item,
.testimonial-card,
.unit-card {
    animation: fadeIn 0.6s ease-out forwards;
}

.about-card:nth-child(1) { animation-delay: 0.1s; }
.about-card:nth-child(2) { animation-delay: 0.2s; }
.about-card:nth-child(3) { animation-delay: 0.3s; }

.area-item:nth-child(1) { animation-delay: 0.1s; }
.area-item:nth-child(2) { animation-delay: 0.15s; }
.area-item:nth-child(3) { animation-delay: 0.2s; }
.area-item:nth-child(4) { animation-delay: 0.25s; }
.area-item:nth-child(5) { animation-delay: 0.3s; }

.service-item {
    animation: scaleIn 0.5s ease-out forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

/* Animações para Cronograma */
.schedule-item {
    animation: fadeIn 0.6s ease-out forwards;
}

.schedule-item:nth-child(1) { animation-delay: 0.1s; }
.schedule-item:nth-child(2) { animation-delay: 0.2s; }

.hours-item {
    animation: scaleIn 0.5s ease-out forwards;
}

.hours-item:nth-child(1) { animation-delay: 0.1s; }
.hours-item:nth-child(2) { animation-delay: 0.2s; }

.schedule-contact {
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* ============================================
   ESTILOS MOBILE APP-LIKE (Aparência de App)
   ============================================ */

/* Safe Area Insets para dispositivos com notch */
@supports (padding: max(0px)) {
    body {
        padding-top: max(0px, env(safe-area-inset-top));
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }
}

/* Bottom Navigation Bar - Estilo App */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
    z-index: 999;
    padding-bottom: env(safe-area-inset-bottom);
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    align-items: center;
    justify-content: space-around;
    padding: 8px 0 max(8px, env(safe-area-inset-bottom)) 0;
    height: auto;
    min-height: 64px;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.2s ease;
    border-radius: 12px;
    min-width: 60px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.bottom-nav-item svg {
    width: 24px;
    height: 24px;
    transition: all 0.2s ease;
}

.bottom-nav-item span {
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    transition: all 0.2s ease;
}

.bottom-nav-item.active {
    color: var(--primary-color);
}

.bottom-nav-item.active svg {
    transform: scale(1.1);
}

.bottom-nav-item.bottom-nav-cta {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 16px;
    padding: 10px 16px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    margin: 0 4px;
}

.bottom-nav-item.bottom-nav-cta svg {
    color: white;
}

.bottom-nav-item.bottom-nav-cta span {
    color: white;
    font-weight: 600;
}

.bottom-nav-item:active {
    transform: scale(0.95);
}

/* Ajustes Mobile App-like para Responsive */
@media (max-width: 768px) {
    /* Mostrar navegação inferior apenas no mobile */
    .bottom-nav {
        display: flex;
    }

    /* Body com padding bottom para a navegação inferior */
    body {
        padding-bottom: 80px;
    }

    /* Header mais compacto estilo app */
    .header {
        padding-top: env(safe-area-inset-top);
        padding-top: max(0px, env(safe-area-inset-top));
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .header-content {
        padding: 10px 15px;
        gap: 0;
        justify-content: space-between;
        min-height: 56px;
    }

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

    .logo img {
        height: 36px;
    }

    /* Esconder navegação superior no mobile */
    .nav {
        display: none;
    }

    .header-actions {
        position: static;
        transform: none;
        order: 2;
        gap: 8px;
    }

    .btn-phone {
        width: 44px;
        height: 44px;
        background: rgba(26, 75, 140, 0.1);
        border-radius: 12px;
    }

    .btn-whatsapp {
        padding: 10px 14px;
        font-size: 0.8rem;
        border-radius: 12px;
    }

    /* Hero ajustado para safe area */
    .hero {
        margin-top: 60px;
        padding-top: env(safe-area-inset-top);
        padding-top: max(20px, env(safe-area-inset-top));
    }

    /* Cards com estilo mais moderno tipo app */
    .about-card,
    .coverage-card,
    .service-item,
    .area-item,
    .testimonial-card,
    .faq-item,
    .about-info-card,
    .service-card-new,
    .area-card-new {
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent;
    }

    .about-card:active,
    .coverage-card:active,
    .service-item:active,
    .area-item:active,
    .testimonial-card:active,
    .faq-item:active {
        transform: scale(0.98);
    }

    /* Seções com mais espaçamento tipo app */
    .section {
        padding: 2.5rem 0;
    }

    .container {
        padding: 0 16px;
    }

    /* Botões maiores para touch */
    .btn {
        min-height: 48px;
        padding: 14px 24px;
        border-radius: 12px;
        font-weight: 600;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .btn:active {
        transform: scale(0.97);
    }

    /* Melhor scroll suave */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Footer com padding para bottom nav apenas no mobile */
    .footer {
        padding-bottom: 100px;
    }

    /* Chat widget ajustado para não sobrepor bottom nav */
    .chat-widget {
        bottom: 90px;
    }

    .chat-popup {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        max-width: none;
        border-radius: 0;
        box-shadow: none;
        z-index: 10000;
        padding-top: env(safe-area-inset-top);
        padding-top: max(0px, env(safe-area-inset-top));
        padding-bottom: env(safe-area-inset-bottom);
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }

    .chat-popup.active {
        transform: translateY(0) scale(1);
    }

    /* Grids com gap maior tipo app */
    .about-grid,
    .coverage-grid,
    .services-grid,
    .areas-grid,
    .testimonials-grid,
    .areas-atuacao-grid {
        gap: 16px;
    }

    /* Textos mais legíveis */
    .section-title {
        font-size: 1.875rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Desktop - resetar padding no footer */
@media (min-width: 769px) {
    .footer {
        padding-bottom: 2rem;
    }
    
    body {
        padding-bottom: 0;
    }
    
    .bottom-nav {
        display: none;
    }
}

/* Ajustes adicionais para telas pequenas */
@media (max-width: 480px) {
    .bottom-nav {
        padding: 6px 0 max(6px, env(safe-area-inset-bottom)) 0;
        min-height: 60px;
    }

    .bottom-nav-item {
        padding: 6px 8px;
        min-width: 56px;
    }

    .bottom-nav-item svg {
        width: 22px;
        height: 22px;
    }

    .bottom-nav-item span {
        font-size: 10px;
    }

    .bottom-nav-item.bottom-nav-cta {
        padding: 8px 12px;
    }

    body {
        padding-bottom: 75px;
    }

    .chat-widget {
        bottom: 85px;
    }

    .chat-popup {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        max-width: none;
        border-radius: 0;
        box-shadow: none;
        z-index: 10000;
        padding-top: env(safe-area-inset-top);
        padding-top: max(0px, env(safe-area-inset-top));
        padding-bottom: env(safe-area-inset-bottom);
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }

    .chat-popup.active {
        transform: translateY(0) scale(1);
    }

    .footer {
        padding-bottom: 95px;
    }
}

/* Animação de entrada suave tipo app */
@keyframes slideUpIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bottom-nav {
    animation: slideUpIn 0.3s ease-out;
}

/* Melhorias de performance para mobile */
@media (max-width: 768px) {
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    /* Touch targets maiores */
    a, button, .btn, .nav-link {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Ajustes específicos para iOS */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        .header {
            position: -webkit-sticky;
            position: sticky;
        }

        /* Prevenir zoom em inputs no iOS */
        input, textarea, select {
            font-size: 16px !important;
        }
    }
}

