/* Estilos globais e reset */
body {
    margin: 0;
    font-family: sans-serif;
    background-color: #0d1925;
    color: #ebe6c6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    cursor: pointer;
    border: none;
    background-color: transparent;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 480px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* Cores */
:root {
    --primary-bg: #0d1925;
    --secondary-bg: #12202f;
    --text-primary: #ebe6c6;
    --text-secondary: #c5bfac;
    --text-muted: #a09b8c;
    --blue-400: #60a5fa; /* Tailwind blue-400 */
    --blue-500: #3b82f6; /* Tailwind blue-500 */
    --blue-600: #2563eb; /* Tailwind blue-600 */
    --green-400: #4ade80; /* Tailwind green-400 */
    --green-500: #22c55e; /* Tailwind green-500 */
    --green-600: #16a34a; /* Tailwind green-600 */
    --purple-400: #a78bfa; /* Tailwind purple-400 */
    --purple-500: #8b5cf6; /* Tailwind purple-500 */
    --border-color: #22303c;
}

/* Utilitários */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-16 {
    margin-top: 4rem;
}

.py-12 {
    padding-top: 2.5rem; /* Ajustado para mobile */
    padding-bottom: 2.5rem; /* Ajustado para mobile */
}

.py-20 {
    padding-top: 3.5rem; /* Ajustado para mobile */
    padding-bottom: 3.5rem; /* Ajustado para mobile */
}

.px-6 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.md\:px-12 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.lg\:px-16 {
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Responsive padding utilities */
@media (min-width: 768px) {
    .py-12 {
        padding-top: 3.5rem; /* Ajustado para tablet */
        padding-bottom: 3.5rem; /* Ajustado para tablet */
    }
    
    .py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media (min-width: 1024px) {
    .py-12 { /* Adicionado para desktop */
        padding-top: 4.5rem; 
        padding-bottom: 4.5rem;
    }
    .py-20 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.max-w-2xl {
    max-width: 42rem; /* 672px */
}

.max-w-3xl {
    max-width: 48rem; /* 768px */
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.font-bold {
    font-weight: bold;
}

.text-xs {
    font-size: 0.75rem; /* 12px */
}

.text-sm {
    font-size: 0.875rem; /* 14px */
}

.text-lg {
    font-size: 1.125rem; /* 18px */
}

.text-xl {
    font-size: 1.25rem; /* 20px */
}

.text-3xl {
    font-size: 1.5rem; /* 24px */
}

.text-4xl {
    font-size: 1.875rem; /* 30px */
}

.md\:text-4xl {
    font-size: 2.25rem; /* 36px */
}

.md\:text-6xl {
    font-size: 3rem; /* 48px */
}

/* Responsive typography */
@media (min-width: 768px) {
    .text-3xl {
        font-size: 1.875rem; /* 30px */
    }
    
    .text-4xl {
        font-size: 2.25rem; /* 36px */
    }
    
    .md\:text-6xl {
        font-size: 3.75rem; /* 60px */
    }
}

@media (min-width: 1024px) {
    .text-3xl {
        font-size: 2.25rem; /* 36px */
    }
    
    .text-4xl {
        font-size: 2.5rem; /* 40px */
    }
    
    .md\:text-6xl {
        font-size: 4rem; /* 64px */
    }
}

.leading-tight {
    line-height: 1.25;
}

.rounded-lg {
    border-radius: 0.5rem; /* 8px */
}

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

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.hover\:scale-110:hover {
    transform: scale(1.1);
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.sm\:flex-row {
    /* Estilos para sm:flex-row serão aplicados via media query se necessário */
}


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

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

.justify-between {
    justify-content: space-between;
}

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

.md\:justify-start {
    /* Estilos para md:justify-start serão aplicados via media query se necessário */
}

.flex-grow {
    flex-grow: 1;
}

.md\:flex-grow-0 {
    /* Estilos para md:flex-grow-0 serão aplicados via media query se necessário */
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-1 {
    flex: 1 1 0%;
}

.space-x-2 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 0.5rem; /* 8px */
}

.space-x-3 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 0.75rem; /* 12px */
}

.space-x-6 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 1.5rem; /* 24px */
}

.gap-4 {
    gap: 1rem; /* 16px */
}

.gap-8 {
    gap: 2rem; /* 32px */
}

.grid {
    display: grid;
}

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

.md\:grid-cols-2 {
    /* Estilos para md:grid-cols-2 serão aplicados via media query se necessário */
}

.md\:grid-cols-3 {
     /* Estilos para md:grid-cols-3 serão aplicados via media query se necessário */
}

.md\:grid-cols-4 {
    /* Estilos para md:grid-cols-4 serão aplicados via media query se necessário */
}

.lg\:grid-cols-3 {
    /* Estilos para lg:grid-cols-3 serão aplicados via media query se necessário */
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.z-50 {
    z-index: 50;
}

.w-full {
    width: 100%;
}

.w-12 {
    width: 3rem; /* 48px */
}

.h-5 {
    height: 1.25rem; /* 20px */
}

.w-5 {
    width: 1.25rem; /* 20px */
}

.h-6 {
    height: 1.5rem; /* 24px */
}

.w-6 {
    width: 1.5rem; /* 24px */
}

.h-12 {
    height: 3rem; /* 48px */
}

.h-20 {
    height: 5rem; /* 80px */
}

.md\:h-24 {
    height: 6rem; /* 96px */
}

.border-b {
    border-bottom-width: 1px;
}

.border {
    border-width: 1px;
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
}

.hidden {
    display: none;
}

.md\:flex {
    /* Estilos para md:flex serão aplicados via media query se necessário */
}

.block {
    display: block;
}

.fixed {
    position: fixed;
}

.bottom-6 {
    bottom: 1.5rem; /* 24px */
}

.right-6 {
    right: 1.5rem; /* 24px */
}

.left-6 {
    left: 1.5rem; /* 24px */
}

.p-4 {
    padding: 1rem; /* 16px */
}

.mt-0\.5 {
    margin-top: 0.125rem; /* 2px */
}

.underline {
    text-decoration-line: underline;
}

/* Componentes específicos */

/* Header */
header {
    background-color: rgba(13, 25, 37, 0.8); /* primary-bg com opacidade */
    border-color: var(--border-color);
}

header nav a:hover {
    color: var(--blue-400);
}

header .logo img {
    max-width: 160px; /* Aumentado para mobile */
    height: auto;
}

/* Mobile menu button */
.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #ebe6c6;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(13, 25, 37, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #22303c;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 40;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: #ebe6c6;
    text-decoration: none;
    padding: 0.75rem;
    text-align: center;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: #22303c;
}

@media (min-width: 480px) {
    header .logo img {
        max-width: 140px;
    }
}

@media (min-width: 768px) {
    header .logo img {
        max-width: 200px;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .md\:flex {
        display: flex;
    }
    .md\:justify-start {
        justify-content: flex-start;
    }
    .md\:flex-grow-0 {
        flex-grow: 0;
    }
    .sm\:flex-row {
        flex-direction: row;
    }
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    header .logo img {
        max-width: 250px;
    }
    
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


/* Badge */
.badge {
    display: inline-block;
    padding: 0.25em 0.5em;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

.badge-secondary {
    background-color: rgba(59, 130, 246, 0.2); /* blue-500/20 */
    color: #93c5fd; /* blue-300 */
    border: 1px solid var(--blue-400);
}

/* Button */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    min-height: 44px; /* Minimum touch target size */
}

@media (min-width: 768px) {
    .button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .button {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

.button-primary {
    background-color: var(--blue-500);
    color: white;
}

.button-primary:hover {
    background-color: var(--blue-600);
}

.button-outline {
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    background-color: transparent;
}

.button-outline:hover {
    background-color: var(--text-primary);
    color: var(--primary-bg);
    border-color: var(--text-primary);
}

.button-sm {
    padding: 0.25rem 0.75rem; /* py-1 px-3 */
    font-size: 0.75rem; /* text-xs */
}

.button .icon-ml {
    margin-left: 0.5rem; /* ml-2 */
}

/* Card */
.card {
    background-color: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.card-header {
    padding: 1.25rem;
}

.card-content {
    padding: 1.25rem;
    padding-top: 0;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .card-header {
        padding: 1.5rem;
    }
    
    .card-content {
        padding: 1.5rem;
        padding-top: 0;
    }
}

@media (min-width: 1024px) {
    .card-header {
        padding: 2rem;
    }
    
    .card-content {
        padding: 2rem;
        padding-top: 0;
    }
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.card-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.icon-wrapper {
    width: 3rem; /* w-12 */
    height: 3rem; /* h-12 */
    border-radius: 0.5rem; /* rounded-lg */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem; /* mb-4 */
}

.icon-wrapper-blue {
    background-color: rgba(59, 130, 246, 0.2); /* bg-blue-500/20 */
}
.icon-wrapper-blue i {
    color: var(--blue-400);
}

.icon-wrapper-green {
    background-color: rgba(34, 197, 94, 0.2); /* bg-green-500/20 */
}
.icon-wrapper-green i {
    color: var(--green-400);
}

.icon-wrapper-purple {
    background-color: rgba(139, 92, 246, 0.2); /* bg-purple-500/20 */
}
.icon-wrapper-purple i {
    color: var(--purple-400);
}

/* Hero Section */
.hero-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    color: var(--text-secondary);
}

@media (min-width: 640px) {
    .hero-section .stats-grid {
        gap: 2rem;
        margin-top: 4rem;
    }
}

@media (min-width: 768px) {
    .hero-section .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

.hero-section .stats-item .stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--blue-400);
    margin-bottom: 0.25rem;
}

.hero-section .stats-item .stat-label {
    font-size: 0.75rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-section .stats-item .stat-value {
        font-size: 1.875rem;
    }
    
    .hero-section .stats-item .stat-label {
        font-size: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .hero-section .stats-item .stat-value {
        font-size: 2.25rem;
    }
    
    .hero-section .stats-item .stat-label {
        font-size: 1rem;
    }
}


/* Services Section */
.services-section {
    background-color: var(--secondary-bg);
}

/* Contact Section */
.contact-section {
    background-color: var(--secondary-bg);
}
.contact-section .card-content p:first-child {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600;
    color: var(--text-primary);
}
.contact-section .card-content p:last-child {
    font-size: 0.875rem; /* text-sm */
    color: var(--text-secondary);
}


/* Footer */
footer {
    background-color: #0a141e;
    color: var(--text-secondary);
}
footer img {
    border-radius: 0.5rem; /* rounded-lg */
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 50;
    background-color: #25d366;
    color: white;
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-button:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@media (min-width: 768px) {
    .whatsapp-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
    }
}

/* LGPD Banner */
.lgpd-banner {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 50;
    background-color: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem;
    max-width: 20rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
    .lgpd-banner {
        bottom: 1.5rem;
        left: 1.5rem;
        right: auto;
        max-width: 24rem;
    }
}

.lgpd-banner .close-button {
    color: var(--text-secondary);
}
.lgpd-banner .close-button:hover {
    color: var(--text-primary);
}
.lgpd-banner .cookie-icon {
    color: var(--blue-400);
    margin-top: 0.125rem; /* mt-0.5 */
    flex-shrink: 0;
}
.lgpd-banner p a {
    color: var(--blue-400);
    text-decoration: underline;
}
.lgpd-banner p a:hover {
    color: #93c5fd; /* blue-300 */
}

.lgpd-banner .button-outline-alt {
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    background-color: transparent;
}
.lgpd-banner .button-outline-alt:hover {
    background-color: var(--border-color);
    color: var(--text-primary);
}
/* Additional responsive improvements */

/* Responsive spacing utilities */
.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-5 {
    margin-bottom: 1.25rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Responsive grid improvements */
.grid-responsive {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .grid-responsive {
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .grid-responsive {
        gap: 2.5rem;
    }
}

/* Responsive text alignment */
.text-center-mobile {
    text-align: center;
}

@media (min-width: 768px) {
    .text-left-md {
        text-align: left;
    }
}

/* Responsive flex utilities */
.flex-col-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .flex-row-sm {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
}

/* Improved button spacing for mobile */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

@media (min-width: 640px) {
    .button-group {
        flex-direction: row;
        gap: 1rem;
        width: auto;
        justify-content: center;
    }
}

/* Responsive card grid */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .card-grid {
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* Responsive contact grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Mobile-first improvements */
@media (max-width: 767px) {
    .hero-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    
    .services-section,
    .contact-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .hero-section .stats-grid {
        margin-top: 2rem;
    }
    
    /* Improve touch targets on mobile */
    .button {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
    }
    
    .nav-link,
    .mobile-nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better mobile typography */
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}

/* Landscape mobile improvements */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
/*  A regra conflitante para .py-20 em paisagem foi comentada para manter a progressão.
    .py-20 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    } 
*/
    
    .mobile-menu {
        max-height: 60vh;
        overflow-y: auto;
    }
}

/* Large screen improvements */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-section .stats-grid {
        gap: 3rem;
    }
    
    .card-grid {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Print styles */
@media print {
    .whatsapp-button,
    .lgpd-banner,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .hero-section,
    .services-section,
    .contact-section {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .card {
        break-inside: avoid;
    }
    
    body {
        background-color: white !important;
        color: black !important;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .card {
        border-width: 2px;
    }
    
    .button {
        border-width: 2px;
    }
    
    .mobile-menu {
        border-width: 2px;
    }
}

/* Focus styles for accessibility */
.button:focus,
.nav-link:focus,
.mobile-nav-link:focus,
.mobile-menu-toggle:focus {
    outline: 2px solid var(--blue-400);
    outline-offset: 2px;
}

/* Improved mobile button styling */
.mobile-btn {
    margin-top: 0.5rem;
    width: 100%;
}

/* Better responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive text wrapping */
.text-wrap {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Mobile-optimized spacing */
@media (max-width: 480px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .card-header,
    .card-content {
        padding: 1rem;
    }
    
    .card-content {
        padding-top: 0;
    }
    
    .hero-section .stats-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .button-group {
        gap: 0.5rem;
    }
    
    .lgpd-banner {
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
        padding: 0.75rem;
    }
    
    .whatsapp-button {
        bottom: 0.75rem;
        right: 0.75rem;
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.125rem;
    }
}
