/* Estilos móviles específicos para el sitio web de Fools */
/* Este archivo contiene solo optimizaciones para dispositivos móviles */

/* Media Queries para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Ajustes generales para tablets */
    body {
        font-size: 16px;
    }
    
    .container {
        padding: 0 25px;
    }
    
    /* Header y navegación */
    .nav-menu li {
        margin-left: 20px; /* Reducido de 30px para evitar encimamiento */
    }
    
    /* Hero Section */
    .creative-anomaly {
        font-size: 54px;
        line-height: 1.2;
    }
    
    .hero-text-light {
        font-size: 22px;
        margin-bottom: 10px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        min-width: 160px;
    }
    
    /* About Section */
    .features-grid {
        gap: 25px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .overlay-text p {
        font-size: 18px;
        max-width: 80%;
        margin: 0 auto;
        line-height: 1.6;
    }
    
    /* Projects Section */
    .projects-grid {
        gap: 25px;
    }
    
    /* Contact Section */
    .contact-container {
        gap: 30px;
    }
    
    .form-control {
        padding: 16px;
    }
}

/* Media Queries para dispositivos móviles */
@media (max-width: 768px) {
    /* Ajustes generales */
    body {
        font-size: 16px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Header y navegación */
    header {
        padding: 15px 0;
    }
    
    .logo img {
        height: 32px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 999;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        font-size: 18px;
        padding: 12px 0;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--text-color);
        font-size: 24px;
        cursor: pointer;
    }
    
    /* Hero Section */
    .hero {
        height: 90vh;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        width: 100%;
        padding: 0 15px;
    }
    
    .creative-anomaly {
        font-size: 38px;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero-text-light {
        font-size: 18px;
        margin-bottom: 12px;
        padding: 0 10px;
        line-height: 1.4;
    }
    
    .hero-buttons {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        margin: 8px 0;
        width: 80%;
        max-width: 250px;
        text-align: center;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    /* Secciones */
    section {
        padding: 70px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 34px;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 16px;
        padding: 0 15px;
        line-height: 1.5;
    }
    
    /* About Section */
    .features-grid {
        gap: 25px;
        margin-bottom: 40px;
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .feature-icon {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .feature-description {
        font-size: 15px;
        line-height: 1.5;
        min-height: auto;
    }
    
    .overlay-text p {
        font-size: 16px;
        padding: 0 20px;
        line-height: 1.6;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .watch-reel-container {
        margin-top: 20px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .watch-reel-container .btn {
        min-width: 160px;
    }
    
    /* Services Section */
    .services-grid {
        gap: 25px;
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-icon {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .service-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 15px;
        line-height: 1.5;
    }
    
    /* Projects Section */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .project-card {
        height: 250px;
    }
    
    .project-overlay {
        padding: 25px;
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    }
    
    .project-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .project-category {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .project-overlay .btn {
        padding: 10px 25px;
        font-size: 15px;
        min-width: 140px;
    }
    
    /* Contact Section */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        gap: 25px;
    }
    
    .contact-info-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .contact-item {
        gap: 15px;
    }
    
    .contact-item i {
        font-size: 22px;
    }
    
    .contact-item-content h3 {
        font-size: 17px;
        margin-bottom: 5px;
    }
    
    .contact-item-content p, .contact-item-content a {
        font-size: 15px;
    }
    
    .social-links {
        gap: 15px;
        padding-top: 25px;
        justify-content: flex-start;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        padding: 15px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    textarea.form-control {
        min-height: 120px;
    }
    
    .form-footer {
        padding-top: 20px;
    }
    
    .form-button-container {
        width: 100%;
    }
    
    .form-button-container .btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    /* Footer */
    footer {
        padding: 50px 0 30px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-about {
        max-width: 100%;
    }
    
    .footer-logo {
        height: 28px;
        margin-bottom: 20px;
    }
    
    .footer-about p {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .footer-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 15px;
    }
    
    .copyright {
        font-size: 14px;
    }
    
    /* Video Modal */
    .modal-content {
        padding: 20px;
        width: 90%;
        max-width: 500px;
        border-radius: 15px;
    }
    
    .video-controls {
        bottom: 20px;
        gap: 20px;
    }
    
    .video-control-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    /* Project Pages */
    .project-detail {
        padding-top: 100px;
    }
    
    .project-header {
        margin-bottom: 40px;
    }
    
    .project-header h1 {
        font-size: 32px;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .project-image-container {
        margin-bottom: 40px;
    }
    
    .project-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-description p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .project-info {
        padding: 25px;
    }
    
    .project-info-item {
        margin-bottom: 20px;
    }
    
    .project-info-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .project-info-item p {
        font-size: 15px;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }
    
    .fullscreen-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
}

/* Media Queries para dispositivos móviles medianos */
@media (max-width: 600px) {
    /* Hero Section */
    .creative-anomaly {
        font-size: 34px;
    }
    
    .hero-text-light {
        font-size: 16px;
    }
    
    /* Secciones */
    .section-header h2 {
        font-size: 30px;
    }
    
    .subtitle {
        font-size: 15px;
    }
    
    /* Project Pages */
    .project-header h1 {
        font-size: 28px;
    }
}

/* Media Queries para dispositivos móviles pequeños */
@media (max-width: 480px) {
    /* Ajustes generales */
    body {
        font-size: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Header y navegación */
    .logo img {
        height: 28px;
    }
    
    /* Hero Section */
    .creative-anomaly {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .hero-text-light {
        font-size: 15px;
        margin-bottom: 10px;
        padding: 0 5px;
    }
    
    .hero-buttons .btn {
        width: 90%;
        padding: 10px 20px;
        font-size: 15px;
    }
    
    /* Secciones */
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    /* About Section */
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .feature-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .overlay-text p {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 15px;
    }
    
    .watch-reel-container .btn {
        min-width: 140px;
        font-size: 14px;
    }
    
    /* Services Section */
    .service-card {
        padding: 20px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    /* Projects Section */
    .project-card {
        height: 200px;
    }
    
    .project-overlay {
        padding: 20px;
    }
    
    .project-title {
        font-size: 18px;
    }
    
    .project-category {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .project-overlay .btn {
        padding: 8px 20px;
        font-size: 14px;
        min-width: 120px;
    }
    
    /* Contact Section */
    .contact-item i {
        font-size: 20px;
    }
    
    .contact-item-content h3 {
        font-size: 16px;
    }
    
    .contact-item-content p, .contact-item-content a {
        font-size: 14px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .form-control {
        padding: 12px;
        font-size: 14px;
    }
    
    textarea.form-control {
        min-height: 100px;
    }
    
    /* Footer */
    .footer-about p {
        font-size: 14px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .copyright {
        font-size: 12px;
    }
    
    /* Video Modal */
    .modal-content {
        padding: 15px;
        width: 95%;
    }
    
    .video-control-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Project Pages */
    .project-detail {
        padding-top: 90px;
    }
    
    .project-header h1 {
        font-size: 24px;
    }
    
    .project-description p {
        font-size: 14px;
    }
    
    .project-info-item h3 {
        font-size: 16px;
    }
    
    .project-info-item p {
        font-size: 14px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .fullscreen-button {
        width: 36px;
        height: 36px;
        font-size: 14px;
        bottom: 15px;
        right: 15px;
    }
}

/* Media Queries para dispositivos móviles muy pequeños */
@media (max-width: 360px) {
    /* Hero Section */
    .creative-anomaly {
        font-size: 26px;
        padding: 0 5px;
    }
    
    .hero-text-light {
        font-size: 14px;
        padding: 0;
    }
    
    .hero-buttons .btn {
        width: 95%;
        padding: 10px 15px;
        font-size: 14px;
    }
    
    /* Secciones */
    .section-header h2 {
        font-size: 22px;
    }
    
    .subtitle {
        font-size: 13px;
    }
    
    /* About Section */
    .feature-card {
        padding: 15px;
    }
    
    .feature-icon {
        font-size: 22px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-description {
        font-size: 13px;
    }
    
    .overlay-text p {
        font-size: 13px;
        padding: 0 10px;
    }
    
    /* Projects Section */
    .project-card {
        height: 180px;
    }
    
    .project-overlay {
        padding: 15px;
    }
    
    .project-title {
        font-size: 16px;
    }
    
    .project-category {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .project-overlay .btn {
        padding: 8px 15px;
        font-size: 13px;
        min-width: 100px;
    }
    
    /* Contact Section */
    .contact-item {
        gap: 10px;
    }
    
    .contact-item i {
        font-size: 18px;
    }
    
    .contact-item-content h3 {
        font-size: 15px;
    }
    
    .contact-item-content p, .contact-item-content a {
        font-size: 13px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .form-control {
        padding: 10px;
        font-size: 13px;
    }
    
    /* Video Modal */
    .video-controls {
        gap: 10px;
    }
    
    .video-control-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    /* Project Pages */
    .project-header h1 {
        font-size: 22px;
    }
    
    .project-description p {
        font-size: 13px;
    }
    
    .project-info {
        padding: 15px;
    }
    
    .project-info-item h3 {
        font-size: 15px;
    }
    
    .project-info-item p {
        font-size: 13px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .fullscreen-button {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}
