/* Responsive Styles (index.html) */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .about-container {
        flex-direction: row;
    }
    
    .mascote {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .parcelamento h2 {
        font-size: 2.2rem;
    }
    
    .parcelamento p {
        font-size: 1.4rem;
    }
    
    .packages-container {
        grid-template-columns: 1fr;
    }
    
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-content,
    .about-img {
        width: 100%;
    }
    
    .mascote {
        max-width: 250px;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    header {
        padding: 8px 5%;
    }
    
    .logo {
        height: 40px;
    }
    
    .logo img {
        max-width: 140px;
    }
    
    body {
        padding-top: 56px;
    }
    
    .hero {
        height: calc(100vh - 56px);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .parcelamento h2 {
        font-size: 1.8rem;
    }
    
    .parcelamento p {
        font-size: 1.2rem;
    }
    
    .testimonial-slide {
        padding: 25px;
    }
    
    .more-packages-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .mascote {
        max-width: 200px;
    }
    
    header {
        padding: 6px 5%;
    }
    
    .logo {
        height: 35px;
    }
    
    .logo img {
        max-width: 120px;
    }
    
    body {
        padding-top: 47px;
    }
    
    .hero {
        height: calc(100vh - 47px);
    }
}


