/* Necro Garden - CSS Responsivo */
/* Adaptação para dispositivos móveis e tablets */

/* Tablet */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.7rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-section h2,
    .services-section h2,
    .gallery-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item-large {
        grid-column: span 1;
    }

    .gallery-item img,
    .gallery-item-large img {
        height: 200px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .links-grid {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .about-text {
        padding: 1rem;
    }

    .about-gallery {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .gallery-overlay {
        padding: 1rem;
    }

    .gallery-overlay h4 {
        font-size: 1.2rem;
    }

    blockquote {
        font-size: 1.2rem;
        padding: 0.5rem;
    }

    blockquote::before {
        font-size: 2rem;
        top: -10px;
        left: -10px;
    }

    .social-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 15px;
        right: 15px;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .about-section h2,
    .services-section h2,
    .gallery-section h2,
    .philosophy-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .gallery-intro {
        font-size: 1rem;
    }
}

/* Large Screens */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .about-section h2,
    .services-section h2,
    .gallery-section h2,
    .philosophy-section h2,
    .contact-section h2 {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-item img,
    .gallery-item-large img {
        height: 350px;
    }
}

/* Touch Devices */
@media (hover: none) and (pointer: coarse) {
    .nav-menu a:hover::before {
        width: 0;
    }

    .service-card:hover {
        transform: none;
        box-shadow: none;
    }

    .cta-button:hover {
        transform: none;
    }

    .gallery-item img:hover,
    .gallery-item-large img:hover {
        transform: none;
    }

    .social-link:hover {
        transform: none;
    }

    .submit-button:hover {
        transform: none;
    }

    .authority-link:hover {
        background: rgba(45, 27, 105, 0.2);
        border-color: #2D1B69;
    }

    .whatsapp-button:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    body {
        background: #000000;
        color: #ffffff;
    }

    .hero-title,
    .about-section h2,
    .services-section h2,
    .gallery-section h2,
    .philosophy-section h2,
    .contact-section h2 {
        color: #ffffff;
        text-shadow: none;
    }

    .service-card,
    .contact-form {
        background: #000000;
        border: 2px solid #ffffff;
    }

    .cta-button,
    .submit-button {
        background: #ffffff;
        color: #000000;
        border: 2px solid #ffffff;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-title {
        animation: none;
    }

    * {
        transition: none !important;
    }
}



