/* ============================================= */
/* 15. MEDIA QUERIES (RESPONSIVE) */
/* ============================================= */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 0;
        margin-bottom: 2rem;
    }

    .about-content {
        flex-direction: column;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .feature-card h3 {
        min-height: auto;
    }

    .feature-card p {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 5%;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        color: white;
        padding: 0.5rem 1rem;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .testimonio-image {
        width: 120px;
        height: 120px;
    }

    .social-bar-container {
        top: auto;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%) translateY(100px);
        animation: fadeSlideInBottom 1s ease-out forwards;
        animation-delay: 0.4s;
    }

    .social-bar {
        flex-direction: row;
        border-radius: 12px 12px 0 0;
        width: max-content;
        max-width: 100vw;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-link:hover {
        width: 45px;
        height: 55px;
        border-radius: 0;
    }

    .social-text {
        position: fixed;
        left: 50%;
        top: auto;
        bottom: 130px;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 12px;
        margin-left: 0;
        white-space: nowrap;
        z-index: 2001;
    }

    .social-link:hover .social-text {
        opacity: 1;
        margin-left: 0;
    }

    #contactForm {
        grid-template-columns: 1fr;
    }

    .form-group:nth-child(5),
    .form-group:nth-child(6) {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 7rem 0 3rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .testimonio-card {
        padding: 20px;
    }
}