/* ===== RESET E CONFIGURAÇÕES BÁSICAS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores da logo */
    --primary-color: #30ae2b;      /* Verde */
    --secondary-color: #ff0000;    /* Vermelho */
    --white-color: #ffffff;        /* Branco */
    
    /* Cores complementares para melhor usabilidade */
    --primary-light: #4bc944;
    --primary-dark: #267021;
    --secondary-light: #ff3333;
    --secondary-dark: #cc0000;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --text-color: #333333;
    
    /* Fontes */
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* Transições */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER E NAVEGAÇÃO ===== */
.header {
    background: var(--white-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 12px;
    transition: var(--transition);
}

.logo:hover {
    background: rgba(48, 174, 43, 0.05);
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
    font-size: 0.75rem;
    opacity: 0.7;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--white-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-radius: 16px;
    padding: 1rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(48, 174, 43, 0.1);
    backdrop-filter: blur(10px);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--white-color);
    border: 1px solid rgba(48, 174, 43, 0.1);
    border-bottom: none;
    border-right: none;
    transform: translateX(-50%) rotate(45deg);
    border-radius: 2px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 0;
    position: relative;
    font-weight: 500;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    border-radius: 0 4px 4px 0;
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(48, 174, 43, 0.05), rgba(48, 174, 43, 0.1));
    color: var(--primary-color);
    transform: translateX(4px);
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu a i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Botão WhatsApp no header */
.whatsapp-btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Menu Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Botão de fechar menu mobile */
.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(48, 174, 43, 0.2);
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1001;
    display: none;
    padding: 12px;
    border-radius: 50%;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.menu-close:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(48, 174, 43, 0.3);
}

@media (max-width: 768px) {
    .menu-close {
        display: block;
    }
    
    /* Esconder o hambúrguer quando o menu estiver ativo */
    .hamburger.active {
        display: none;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white-color);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.btn-secondary:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ===== SEÇÃO PROCEDIMENTOS ===== */
.procedures {
    padding: 80px 0;
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

.procedures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.procedure-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.procedure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.procedure-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.procedure-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.procedure-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.procedure-card p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.card-link:hover {
    color: var(--secondary-dark);
}

/* ===== SEÇÃO SOBRE ===== */
.about {
    padding: 80px 0;
    background: var(--white-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: 10px;
    transition: var(--transition);
}

.feature:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature:hover i {
    color: var(--white-color);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* ===== SEÇÃO CONTATO ===== */
.contact {
    padding: 80px 0;
    background: var(--gray-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
    text-align: center;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--gray-medium);
}

.whatsapp-card {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(48, 174, 43, 0.3);
}

.whatsapp-card i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.whatsapp-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.whatsapp-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.whatsapp-btn-large {
    background: var(--white-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.whatsapp-btn-large:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--white-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    width: 90px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.footer-logo:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-contact {
    background: rgba(48, 174, 43, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(48, 174, 43, 0.2);
}

.footer-contact p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    opacity: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact p:first-child {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(48, 174, 43, 0.2);
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    color: var(--primary-color);
    width: 18px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact strong {
    color: var(--white-color);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* Responsividade do Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        width: 80px;
    }
}

/* ===== PÁGINA DE NOVIDADES ===== */
.hero-novidades {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white-color);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-novidades::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.hero-novidades-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.hero-novidades h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-novidades h1 i {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-novidades p {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Seção Countdown */
.countdown-section {
    padding: 80px 0;
    background: var(--white-color);
    text-align: center;
}

.countdown-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.countdown-content p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.time-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white-color);
    padding: 2rem;
    border-radius: 20px;
    min-width: 120px;
    box-shadow: 0 10px 30px rgba(48, 174, 43, 0.3);
    transform: translateY(0);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.time-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.time-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(48, 174, 43, 0.4);
}

.time {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Seção Preview */
.novidades-preview {
    padding: 80px 0;
    background: var(--gray-light);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.preview-card {
    background: var(--white-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.preview-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
}

.preview-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.preview-card:hover .preview-icon::after {
    opacity: 1;
}

.preview-icon i {
    font-size: 2.5rem;
    color: var(--white-color);
}

.preview-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.preview-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Seção Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white-color);
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.newsletter-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.newsletter-btn {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.newsletter-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.social-follow {
    margin-top: 3rem;
}

.social-follow p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Responsividade da página de novidades */
@media (max-width: 768px) {
    .hero-novidades h1 {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-novidades h1 i {
        font-size: 1.8rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .time-box {
        min-width: 80px;
        padding: 1.5rem 1rem;
    }
    
    .time {
        font-size: 2rem;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}

/* ===== BOTÃO WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(48, 174, 43, 0.4);
    transition: var(--transition);
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(48, 174, 43, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(48, 174, 43, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(48, 174, 43, 0);
    }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        box-shadow: 0 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
        padding-top: 80px;
        overflow-y: auto;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(48, 174, 43, 0.1) 0%, rgba(0,0,0,0.3) 100%);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
        backdrop-filter: blur(5px);
    }
    
    .nav-menu.active::before {
        opacity: 1;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.3s ease forwards;
    }
    
    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
    
    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 15px;
        transition: var(--transition);
        font-weight: 500;
        background: rgba(255, 255, 255, 0.7);
        margin: 0.25rem 0;
        min-width: 200px;
        text-align: center;
        border: 1px solid rgba(48, 174, 43, 0.1);
    }
    
    .nav-menu a:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        color: var(--white-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(48, 174, 43, 0.3);
    }
    

    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-top: 0;
        transition: all 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 400px;
        margin-top: 1rem;
        padding: 1rem 0;
    }
    
    .dropdown-menu a {
        font-size: 1rem;
        color: var(--gray-dark);
        margin: 0.25rem 1rem;
        padding: 0.75rem 1.5rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(48, 174, 43, 0.1);
        font-weight: 400;
        min-width: 180px;
    }
    
    .dropdown-menu a:hover {
        background: rgba(48, 174, 43, 0.1);
        color: var(--primary-color);
        transform: translateX(5px);
    }
    

    
    .dropdown.active > a::after {
        transform: rotate(180deg);
    }
    
    .dropdown > a:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        color: var(--white-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(48, 174, 43, 0.3);
    }
    
    .dropdown.active > a {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        color: var(--white-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(48, 174, 43, 0.3);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .procedures-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.75rem 1.5rem;
    }
    
    .procedure-card {
        padding: 1.5rem;
    }
    
    .whatsapp-card {
        padding: 2rem;
    }
}

/* ===== ANIMAÇÕES DE SCROLL ===== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

/* ===== LOADING ANIMATION ===== */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--gray-light);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== ESTILOS PARA PÁGINAS DE PROCEDIMENTOS ===== */
.hero-procedure {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white-color);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-procedure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.hero-procedure-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white-color);
    transition: width 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--white-color);
}

.breadcrumb a:hover::after {
    width: 100%;
}

.breadcrumb span {
    margin: 0 0.75rem;
    opacity: 0.6;
}

.hero-procedure h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-procedure h1 i {
    font-size: 2.2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-procedure p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Conteúdo das páginas de procedimentos */
.procedure-content {
    padding: 80px 0;
    background: var(--white-color);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.main-content {
    padding-right: 2rem;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 1rem;
}

/* Grid de benefícios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 10px;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--gray-medium);
    font-size: 1rem;
}

/* Tipos de tratamento */
.treatment-types {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.treatment-type {
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.treatment-type h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.treatment-type p {
    margin-bottom: 1rem;
}

.treatment-type ul {
    list-style: none;
    padding: 0;
}

.treatment-type ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.treatment-type ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Processo de tratamento */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 10px;
    transition: var(--transition);
}

.step:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.step-number {
    background: var(--primary-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step:hover .step-number {
    background: var(--white-color);
    color: var(--primary-color);
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step:hover .step-content h3 {
    color: var(--white-color);
}

.step-content p {
    color: var(--gray-medium);
    font-size: 1rem;
}

.step:hover .step-content p {
    color: var(--white-color);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-color);
}

.sidebar-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-card p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
}

.sidebar-btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.sidebar-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-medium);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li i {
    color: var(--primary-color);
    width: 20px;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.procedure-links {
    list-style: none;
    padding: 0;
}

.procedure-links li {
    margin-bottom: 0.5rem;
}

.procedure-links a {
    color: var(--gray-medium);
    text-decoration: none;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.procedure-links a:hover {
    color: var(--primary-color);
}

.procedure-links a i {
    color: var(--primary-color);
    width: 20px;
}

/* CTA Section */
.cta-section {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    background: var(--white-color);
    color: var(--secondary-color);
    padding: 1.25rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    transition: var(--transition);
}

.cta-btn:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsividade para páginas de procedimentos */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-procedure {
        padding: 80px 0 30px;
    }

    .hero-procedure h1 {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-procedure h1 i {
        font-size: 1.8rem;
        padding: 0.4rem;
    }

    .hero-procedure p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        gap: 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-btn {
        padding: 1rem 2rem;
    }
}

/* ===== PÁGINA COMPACTA DE NOVIDADES ===== */
.novidades-compact {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2db929 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.novidades-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.compact-container {
    max-width: 1000px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 40px;
    text-align: center;
    position: relative;
}

/* Header Compacto */
.compact-header {
    margin-bottom: 30px;
}

.compact-logo {
    width: 80px;
    height: auto;
    box-shadow: 0 10px 30px rgba(48, 174, 43, 0.3);
    margin-bottom: 20px;
}

.compact-header h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(48, 174, 43, 0.2);
}

.compact-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

/* Countdown Compacto */
.compact-countdown {
    margin-bottom: 30px;
}

.compact-countdown h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.compact-countdown .countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0;
}

.compact-countdown .time-box {
    background: linear-gradient(135deg, var(--primary-color), #2db929);
    color: white;
    padding: 15px 10px;
    border-radius: 16px;
    min-width: 70px;
    box-shadow: 0 8px 25px rgba(48, 174, 43, 0.3);
    animation: shimmer 2s ease-in-out infinite alternate;
}

.compact-countdown .time {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.compact-countdown .label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Preview Compacto */
.compact-preview {
    margin-bottom: 30px;
}

.mini-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mini-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    text-align: center;
    transition: all 0.3s ease;
}

.mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(48, 174, 43, 0.15);
}

.mini-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.mini-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

/* CTA Compacto */
.compact-cta {
    display: flex;
    justify-content: center;
}

.cta-btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    background: linear-gradient(135deg, #25d366, #22c55e);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

/* Responsividade da página compacta */
@media (max-width: 768px) {
    .compact-container {
        padding: 30px 20px;
        margin: 10px;
        border-radius: 20px;
    }
    
    .compact-header h1 {
        font-size: 1.8rem;
    }
    
    .compact-header p {
        font-size: 1rem;
    }
    
    .compact-countdown h2 {
        font-size: 1.4rem;
    }
    
    .compact-countdown .countdown-timer {
        gap: 10px;
    }
    
    .compact-countdown .time-box {
        min-width: 60px;
        padding: 12px 8px;
    }
    
    .compact-countdown .time {
        font-size: 1.5rem;
    }
    
    .compact-countdown .label {
        font-size: 0.8rem;
    }
    
    .mini-cards {
        gap: 15px;
    }
    
    .mini-card {
        min-width: 120px;
        padding: 15px;
    }
    
    .mini-card i {
        font-size: 1.6rem;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .compact-container {
        padding: 25px 15px;
    }
    
    .compact-logo {
        width: 60px;
        height: auto;
    }
    
    .compact-header h1 {
        font-size: 1.6rem;
    }
    
    .compact-countdown .countdown-timer {
        gap: 8px;
    }
    
    .compact-countdown .time-box {
        min-width: 55px;
        padding: 10px 6px;
    }
    
    .compact-countdown .time {
        font-size: 1.3rem;
    }
    
    .mini-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .mini-card {
        width: 100%;
        max-width: 200px;
    }
} 