<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
* Folha de Estilo Principal
* Desentupidora Emergencia LTDA
* VersÃ£o: 1.0
*/

/* ===== VariÃ¡veis CSS ===== */
:root {
    /* Cores Principais */
    --primary-color: #FFD700; /* Amarelo */
    --secondary-color: #1E3A8A; /* Azul escuro */
    --accent-color: #FF6B00; /* Laranja */
    --background-color: #F8F9FA; /* Cinza muito claro */
    
    /* Cores de Texto */
    --text-dark: #212529;
    --text-medium: #6C757D;
    --text-light: #F8F9FA;
    
    /* Cores de Status */
    --success-color: #28A745;
    --warning-color: #FFC107;
    --danger-color: #DC3545;
    --info-color: #17A2B8;
    
    /* Tamanhos de Fonte */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-md: 1rem;
    --font-lg: 1.25rem;
    --font-xl: 1.5rem;
    --font-xxl: 2rem;
    --font-xxxl: 2.5rem;
    
    /* EspaÃ§amentos */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    
    /* Bordas */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;
    
    /* Sombras */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    
    /* TransiÃ§Ãµes */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ===== Reset e Estilos Gerais ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: var(--font-xxxl);
}

h2 {
    font-size: var(--font-xxl);
}

h3 {
    font-size: var(--font-xl);
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition-normal);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: var(--spacing-xxl) 0;
}

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

.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1.5rem;
    font-size: var(--font-md);
    line-height: 1.5;
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-light);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-color: var(--secondary-color);
}

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

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

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

.btn-outline-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.section-title {
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-title h2 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title .subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: var(--font-sm);
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    text-align: center;
}

.loader svg {
    animation: rotate 2s linear infinite;
}

.loader-circle {
    animation: dash 1.5s ease-in-out infinite;
}

.loader p {
    margin-top: 1rem;
    color: var(--text-medium);
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dashoffset: -125;
    }
}

/* ===== Aviso de Cookies ===== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(33, 37, 41, 0.95);
    color: #fff;
    z-index: 999;
    padding: 1rem 0;
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin-bottom: 0;
    font-size: var(--font-sm);
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-cookie {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border: none;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    transition: var(--transition-normal);
}

.btn-cookie:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
}

/* ===== Header &amp; NavegaÃ§Ã£o ===== */
.main-header {
    position: relative;
    z-index: 100;
}

.top-bar {
    background-color: var(--secondary-color);
    padding: 0.5rem 0;
    color: var(--text-light);
}

.top-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: var(--text-light);
    margin-right: 1.5rem;
    font-size: var(--font-sm);
    transition: var(--transition-normal);
}

.contact-info a:hover {
    color: var(--primary-color);
}

.contact-info a i {
    margin-right: 0.3rem;
}

.social-links a {
    color: var(--text-light);
    margin-left: 0.5rem;
    transition: var(--transition-normal);
}

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

.navbar {
    background-color: #fff;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: var(--font-xl);
    color: var(--secondary-color);
}

.navbar-toggler {
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30, 58, 138, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 1.5rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.nav-link.active {
    color: var(--secondary-color);
    font-weight: 600;
}

.whatsapp-link {
    background-color: #25D366;
    color: #fff !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
}

.whatsapp-link i {
    margin-right: 0.5rem;
}

.whatsapp-link:hover {
    background-color: #128C7E;
    color: #fff !important;
}

.whatsapp-link:after {
    display: none;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    background-color: var(--secondary-color);
    color: var(--text-light);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
}

.hero-content {
    padding: 5rem 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text p {
    margin-bottom: 2rem;
    font-size: var(--font-lg);
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* ===== Banner Promocional ===== */
.promo-banner {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.promo-banner p {
    margin-bottom: 0;
}

/* ===== SeÃ§Ã£o Sobre ===== */
.section-sobre {
    background-color: #fff;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.about-content .lead {
    color: var(--secondary-color);
    font-weight: 500;
}

.company-info {
    margin-top: 2rem;
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-item h5 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.info-item p {
    margin-bottom: 0;
}

.counter-row {
    margin-top: 3rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem 1rem;
    box-shadow: var(--shadow-sm);
}

.counter-item {
    text-align: center;
    padding: 1rem;
}

.counter-icon {
    margin-bottom: 1rem;
}

.counter-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.counter-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.counter-item p {
    margin-bottom: 0;
    color: var(--text-medium);
    font-weight: 500;
}

/* ===== SeÃ§Ã£o ServiÃ§os ===== */
.service-card {
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    margin-bottom: 1.5rem;
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.service-content h3 {
    margin-bottom: 1rem;
    font-size: var(--font-lg);
    color: var(--secondary-color);
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 0;
}

.service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

/* ===== SeÃ§Ã£o Depoimentos ===== */
.section-depoimentos {
    background-color: #fff;
    position: relative;
}

.testimonial-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.testimonial-content {
    position: relative;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--warning-color);
    margin-right: 2px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--primary-color);
}

.author-info h5 {
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

.author-info span {
    color: var(--text-medium);
    font-size: var(--font-sm);
}

.swiper-container {
    padding-bottom: 3rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

/* ===== SeÃ§Ã£o Contato ===== */
.section-contato {
    background-color: var(--background-color);
}

.contact-info-wrapper {
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-info-header {
    margin-bottom: 1.5rem;
}

.contact-info-list {
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.icon-box i {
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.info-content h5 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.info-content p, 
.info-content a {
    margin-bottom: 0;
    color: var(--text-medium);
}

.info-content a:hover {
    color: var(--primary-color);
}

.contact-social h5 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--background-color);
    color: var(--secondary-color);
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: var(--transition-normal);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.contact-form-wrapper {
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-form-wrapper h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-form-wrapper p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

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

.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: var(--font-md);
    line-height: 1.5;
    color: var(--text-dark);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

.form-control:focus {
    color: var(--text-dark);
    background-color: #fff;
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.form-check-input {
    margin-right: 0.5rem;
}

.map-container {
    margin-top: 3rem;
}

.map-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* ===== Footer ===== */
.main-footer {
    background-color: #1a1a1a;
    color: #fff;
}

.footer-widgets {
    background-color: #1a1a1a;
    padding: 4rem 0;
}

.footer-widget {
    margin-bottom: 2rem;
}

.widget-title {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 10px;
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.about-text {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.company-info p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-social {
    margin-top: 1.5rem;
}

.footer-social .social-icon {
    background-color: #333;
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-social .social-icon:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.footer-links {
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #ccc;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info {
    padding-left: 0;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.contact-info li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info li span, 
.contact-info li a {
    color: #ccc;
}

.contact-info li a:hover {
    color: var(--primary-color);
}

.footer-divider {
    height: 1px;
    background-color: #333;
}

.footer-legal {
    background-color: #151515;
    padding: 1rem 0;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
}

.legal-links li {
    margin-right: 1.5rem;
}

.legal-links a {
    color: #ccc;
    font-size: var(--font-sm);
}

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

.payment-methods {
    color: #ccc;
    font-size: var(--font-sm);
}

.payment-methods i {
    font-size: 1.5rem;
    margin-left: 0.5rem;
    color: #fff;
}

.copyright {
    background-color: #111;
    padding: 1rem 0;
}

.copyright-text,
.developer-credit {
    color: #999;
    font-size: var(--font-xs);
    margin-bottom: 0;
}

.developer-credit a {
    color: var(--primary-color);
}

/* ===== BotÃµes Flutuantes ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    z-index: 99;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #fff;
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 100px;
    background-color: var(--secondary-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

/* ===== PolÃ­tica e Termos ===== */
.section-politicas,
.section-termos {
    padding-top: 2rem;
}

.policy-content,
.terms-content {
    margin-bottom: 3rem;
}

.policy-content .card,
.terms-content .card {
    margin-bottom: 1.5rem;
    border: none;
    box-shadow: var(--shadow-sm);
}

.policy-content h3,
.terms-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-content p,
.terms-content p {
    margin-bottom: 1rem;
}

.policy-content ul,
.terms-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-content ul li,
.terms-content ul li {
    position: relative;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

/* ===== Responsividade ===== */
@media (max-width: 991.98px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .navbar-collapse {
        background-color: #fff;
        padding: 1rem;
        box-shadow: var(--shadow-sm);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 999;
    }
    
    .navbar-nav {
        flex-direction: column;
    }
    
    .nav-item {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
    
    .whatsapp-link {
        display: inline-flex;
        margin-top: 0.5rem;
    }
    
    .hero-content {
        padding: 3rem 0;
    }
    
    .hero-text {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 3rem 0;
    }
    
    .top-contact {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-info a {
        display: block;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .hero-btns .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-btns .btn + .btn {
        margin-left: 0 !important;
    }
    
    .counter-item {
        margin-bottom: 2rem;
    }
    
    .footer-widget {
        text-align: center;
    }
    
    .widget-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links li {
        text-align: center;
    }
    
    .contact-info li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-info li i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .legal-links {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .payment-methods {
        text-align: center !important;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .back-to-top {
        bottom: 15px;
        right: 80px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    section {
        padding: 2rem 0;
    }
    
    .section-title .subtitle {
        font-size: 0.7rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
    }
}

/* ===== AnimaÃ§Ãµes ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.animate__fadeIn {
    animation: fadeIn 1s;
}

.animate__fadeInLeft {
    animation: fadeIn 1s, slideInUp 1s;
}

.animate__fadeInRight {
    animation: fadeIn 1s, slideInUp 1s;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation: slideInUp 1s;
} </pre></body></html>