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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, #E63946 0%, #d62839 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
}

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

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255,255,255,0.2);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 12px 20px;
    border-radius: 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333 !important;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f9f9f9;
    color: #E63946 !important;
    padding-left: 25px;
}

/* Home Page */
.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
}

.logo-container {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease;
}

.logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.logo-container h1 {
    font-size: 2rem;
    color: #333;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.social-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-link.instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.social-link span {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.cta-section {
    margin-top: 4rem;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #E63946 0%, #d62839 100%);
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
}

/* Contact Page */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-container h1 {
    text-align: center;
    color: #E63946;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-info h2 {
    color: #E63946;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item svg {
    color: #E63946;
    flex-shrink: 0;
}

.info-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: #666;
    line-height: 1.8;
}

.info-item a {
    color: #E63946;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #d62839;
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: #E63946;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E63946;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #E63946 0%, #d62839 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
    text-align: center;
}

/* Sorteio Page */
.sorteio-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.banner-promo {
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    background: linear-gradient(135deg, #E63946 0%, #d62839 100%);
    min-height: 300px;
    object-fit: cover;
}

.rules-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.rules-content h1 {
    color: #E63946;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

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

.rule-section h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-left: 4px solid #E63946;
    padding-left: 1rem;
}

.rule-section p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.rule-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.rule-section li {
    margin-bottom: 0.5rem;
    color: #555;
}

.rule-section.highlight {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #E63946;
}

.cta-contact {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

.cta-contact p {
    font-size: 1.2rem;
    color: #555;
}

.cta-contact a {
    color: #E63946;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.cta-contact a:hover {
    color: #d62839;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        text-align: center;
    }

    .logo {
        max-width: 100%;
    }

    .logo-container h1 {
        font-size: 1.5rem;
    }

    .social-icons {
        gap: 1.5rem;
    }

    .social-link {
        padding: 1.5rem;
    }

    .social-link svg {
        width: 48px;
        height: 48px;
    }

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

    .rules-content {
        padding: 1.5rem;
    }

    .rules-content h1 {
        font-size: 1.8rem;
    }

    .rule-section h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cta-button {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .contact-container h1 {
        font-size: 2rem;
    }
}

/* Google Review Section - Home */
.google-review-section {
    max-width: 600px;
    margin: 4rem auto 2rem;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.google-review-section h2 {
    color: #E63946;
    font-size: 2em;
    margin-bottom: 1rem;
}

.google-review-section p {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 2rem;
}

.google-review-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.google-review-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.5);
}

.google-review-button svg {
    width: 32px;
    height: 32px;
}

/* Modais */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #E63946;
}

.modal-content h2 {
    color: #E63946;
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #E63946;
}

.modal-content p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.modal-list {
    list-style: none;
    padding: 0;
}

.modal-list li {
    padding: 12px 0;
    font-size: 1.1em;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.modal-list li:last-child {
    border-bottom: none;
}

/* Footer Atualizado */
footer {
    background: #333;
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin: 8px 0;
    font-size: 0.95em;
}

.footer-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #555;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95em;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
}

.footer-links a:hover {
    background: #E63946;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .google-review-section {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem 1rem;
    }
    
    .google-review-section h2 {
        font-size: 1.5em;
    }
    
    .google-review-button {
        font-size: 1.1em;
        padding: 15px 30px;
    }
    
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-content h2 {
        font-size: 1.4em;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links a {
        display: block;
        width: 100%;
    }
}

/* ================================
   PÁGINA DICAS DO SEU WALDEMAR
   ================================ */

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

/* Hero Section */
.dicas-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #E63946 0%, #c32f3b 100%);
    color: white;
    border-radius: 15px;
    margin-bottom: 60px;
}

.dicas-hero h1 {
    font-size: 3em;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 10px;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Section Common */
.section-intro {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

/* Calculadoras Section */
.calculadoras-section {
    margin-bottom: 80px;
}

.calculadoras-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #E63946;
    margin-bottom: 20px;
}

.calculadoras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.calc-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
}

.calc-card h3 {
    font-size: 1.8em;
    color: #E63946;
    margin-bottom: 20px;
    text-align: center;
}

.calc-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.calc-form input,
.calc-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.calc-form input:focus,
.calc-form select:focus {
    outline: none;
    border-color: #E63946;
}

.calc-btn {
    width: 100%;
    padding: 15px;
    background: #E63946;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.calc-btn:hover {
    background: #c32f3b;
}

.calc-result {
    display: none;
    margin-top: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #E63946;
}

.resultado-calc {
    text-align: center;
}

.resultado-calc p {
    margin: 10px 0;
}

.resultado-valor {
    font-size: 1.5em;
    font-weight: bold;
    color: #E63946;
}

.resultado-preco {
    font-size: 1.2em;
    color: #333;
}

.resultado-dica {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-style: italic;
    color: #666;
}

/* Dicas Section */
.dicas-section {
    margin-bottom: 80px;
}

.dicas-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #E63946;
    margin-bottom: 20px;
}

.dicas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.dica-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.dica-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
}

.dica-card h3 {
    font-size: 1.6em;
    color: #E63946;
    margin-bottom: 15px;
}

.dica-card > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dica-detalhes {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.dica-detalhes strong {
    color: #E63946;
    display: block;
    margin-bottom: 10px;
}

.dica-detalhes ul {
    margin: 15px 0;
    padding-left: 20px;
}

.dica-detalhes li {
    margin: 8px 0;
    line-height: 1.6;
}

.dica-detalhes p {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-style: italic;
    color: #555;
}

/* Curiosidades Section */
.curiosidades-section {
    margin-bottom: 80px;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.curiosidades-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #E63946;
    margin-bottom: 40px;
}

.curiosidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.curiosidade-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.curiosidade-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.15);
}

.curiosidade-card h4 {
    color: #E63946;
    font-size: 1.2em;
    margin-bottom: 12px;
}

.curiosidade-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.dicas-cta {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, #E63946 0%, #c32f3b 100%);
    color: white;
    border-radius: 15px;
    margin-bottom: 40px;
}

.dicas-cta h3 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.dicas-cta p {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn-primary {
    background: white;
    color: #E63946;
}

.cta-btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

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

.cta-btn-secondary:hover {
    background: white;
    color: #E63946;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dicas-hero h1 {
        font-size: 2em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .dicas-section h2,
    .calculadoras-section h2,
    .curiosidades-section h2 {
        font-size: 2em;
    }
    
    .calculadoras-grid {
        grid-template-columns: 1fr;
    }
    
    .dicas-grid {
        grid-template-columns: 1fr;
    }
    
    .curiosidades-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
    }
    
    .dicas-cta h3 {
        font-size: 1.8em;
    }
}


.resultado-detalhe {
    font-size: 1.1em;
    color: #555;
    margin: 5px 0;
    padding-left: 10px;
}


/* ================================
   CARROSSEL DE CURIOSIDADES
   ================================ */

.curiosidades-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.curiosidade-slide {
    min-width: 100%;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.curiosidade-slide h4 {
    color: #E63946;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.curiosidade-slide p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1em;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #E63946;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 2em;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-btn:hover {
    background: #c32f3b;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: #E63946;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: #c32f3b;
}

/* Mobile */
@media (max-width: 768px) {
    .curiosidades-carousel {
        padding: 0 50px;
    }
    
    .curiosidade-slide {
        padding: 30px 20px;
    }
    
    .curiosidade-slide h4 {
        font-size: 1.2em;
    }
    
    .curiosidade-slide p {
        font-size: 1em;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
}


/* Indicador de pausa (opcional) */
.curiosidades-carousel::after {
    content: '';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.curiosidades-carousel:hover::after {
    content: '⏸ Pausado';
    opacity: 0.6;
    width: auto;
    height: auto;
    font-size: 0.85em;
    color: #666;
}

/* Suavizar cursor sobre o carrossel */
.curiosidades-carousel {
    cursor: default;
}

.curiosidade-slide {
    cursor: text;
    user-select: text;
}

