/* Responsive Design */

/* Mobile Styles (up to 768px) */
@media (max-width: 768px) {
    header {
        padding: 0.5rem 0;
    }

    .header-container {
        padding: 0 0.5rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo::after {
        right: -25px;
        font-size: 1.2rem;
    }

    .hero {
        padding: 100px 1rem 3rem;
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .seo-content {
        padding: 2rem 1rem;
    }

    .seo-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .seo-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .whatsapp-float::before {
        font-size: 1rem;
    }

    footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section {
        text-align: center;
    }
}

/* Tablet Styles (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .seo-section {
        padding: 1.8rem;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Styles (1025px and above) */
@media (min-width: 1025px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .seo-content {
        padding: 5rem 2rem;
    }

    .seo-section {
        padding: 2.5rem;
    }

    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop Styles (1440px and above) */
@media (min-width: 1440px) {
    .hero h1 {
        font-size: 4rem;
    }

    .hero-container,
    .seo-content,
    .footer-container {
        max-width: 1400px;
    }
}

/* Print Styles */
@media print {
    .whatsapp-float {
        display: none;
    }

    header {
        position: static;
        background: #000000;
    }

    .hero {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .seo-section {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-cta,
    .seo-cta,
    .whatsapp-float {
        border: 2px solid white;
    }

    .logo {
        text-shadow: none;
        color: white;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .logo::after {
        animation: none;
    }

    .whatsapp-float {
        animation: none;
    }

    .hero-cta,
    .seo-cta {
        transition: none;
    }

    .hero-cta:hover,
    .seo-cta:hover {
        transform: none;
    }
}
