/*
Theme Name: Ecoplan Theme
Theme URI: https://ecoplansa.com
Author: Ecoplan
Author URI: https://ecoplansa.com
Description: Tema personalizado para Ecoplan con slider, menú responsive y soporte completo para Elementor. Incluye panel de configuración en el Customizer para ajustar colores, fuentes y transiciones del slider.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ecoplansa
*/

/* Importar fuentes estilo Salient */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

/* Header estilo TheFox */
.site-header {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 12px 0;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.site-header.with-slider {
    background: rgba(255, 255, 255, 0.9);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    max-width: 160px;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

.site-logo img {
    max-width: 100%;
    height: auto;
    max-height: 55px;
    object-fit: contain;
}

/* Botón menú hamburguesa */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.site-header.scrolled .mobile-menu-toggle span {
    background: #333;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menú de navegación estilo TheFox */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.main-navigation a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #29b6f6;
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: #29b6f6;
}

.main-navigation a:hover::after {
    width: 100%;
}

.site-header.scrolled .main-navigation a {
    color: #333;
}

/* Botón flotante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

/* Slider principal estilo TheFox */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    transform: scale(1.1);
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom 20s ease-in-out infinite alternate;
}

@keyframes zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 15;
    max-width: 900px;
    padding: 0 20px;
    pointer-events: none;
}

.slide-content a,
.slide-content button {
    pointer-events: auto;
}

.slide-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.3s both;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.slide-content p {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.6s both;
}

/* Formato 1: Fondo oscuro semitransparente */
.slide-content-format1 {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

/* Formato 2: Fondo blanco semitransparente */
.slide-content-format2 {
    background: rgba(255, 255, 255, 0.8);
    padding: 60px 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.slide-content-format2 h1 {
    color: #333;
    text-shadow: none;
}

.slide-content-format2 p {
    color: #555;
    text-shadow: none;
}

/* Formato 3: Sin fondo, texto con sombra */
.slide-content-format3 {
    background: transparent;
}

.slide-content-format3 h1 {
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.slide-content-format3 p {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Botón del slider */
.slide-button {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background: #4588e0;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.9s both;
    border: 2px solid #4588e0;
    cursor: pointer;
    z-index: 20;
    position: relative;
}

.slide-button:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,25,55,0.7) 0%, rgba(0,35,65,0.5) 100%);
    z-index: 5;
    pointer-events: none;
}

/* Contenido principal */
.site-main {
    margin-top: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.site-main article {
    margin-bottom: 60px;
}

.site-main h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: 1px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 0;
    font-weight: 300;
}

/* About Section */
.section-about {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Features Section */
.section-features {
    padding: 80px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #4588e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.feature-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-family: 'Lato', sans-serif;
}

/* Parallax Section */
.section-parallax {
    position: relative;
    padding: 60px 0;
    margin-top: 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.parallax-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #fff;
}

.parallax-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
}

.parallax-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.parallax-button {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.parallax-button.primary {
    background: #4588e0;
    color: #fff;
    border: 2px solid #4588e0;
}

.parallax-button.primary:hover {
    background: transparent;
    color: #fff;
}

.parallax-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.parallax-button.secondary:hover {
    background: #fff;
    color: #4588e0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-width: 240px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    color: #4588e0;
    flex-shrink: 0;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    letter-spacing: -0.3px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 400;
}

/* Services Section */
.section-services {
    padding: 80px 0;
    background: #f0f8ff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 45px 35px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: #4588e0;
}

.service-icon {
    font-size: 52px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
    font-weight: 400;
}

/* CTA Section */
.section-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4588e0 0%, #2d6db8 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: #fff;
    color: #4588e0;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: #f8f9fa;
    color: #2d6db8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Portfolio Section */
.section-portfolio {
    padding: 80px 0;
    background: #fff;
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.portfolio-large {
    grid-row: span 2;
}

.portfolio-medium {
    grid-row: span 1;
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(69, 136, 224, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-overlay h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-overlay h3 {
    transform: translateY(0);
}

/* Lightbox Modal */
.portfolio-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    box-sizing: border-box;
}

.portfolio-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #333;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #4588e0;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.lightbox-info {
    padding: 20px 30px;
    background: #fff;
}

.lightbox-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.lightbox-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-family: 'Lato', sans-serif;
}

/* Footer estilo TheFox */
.site-footer {
    background: linear-gradient(180deg, #1a4a8a 0%, #4588e0 50%, #6ba3e8 100%);
    color: #fff;
    padding: 60px 0 20px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Ccircle cx='30' cy='40' r='8'/%3E%3Ccircle cx='70' cy='80' r='12'/%3E%3Ccircle cx='120' cy='30' r='6'/%3E%3Ccircle cx='160' cy='90' r='10'/%3E%3Ccircle cx='50' cy='150' r='7'/%3E%3Ccircle cx='100' cy='170' r='9'/%3E%3Ccircle cx='180' cy='140' r='5'/%3E%3Ccircle cx='20' cy='100' r='11'/%3E%3Ccircle cx='140' cy='120' r='8'/%3E%3Ccircle cx='90' cy='60' r='6'/%3E%3Ccircle cx='170' cy='50' r='7'/%3E%3Ccircle cx='40' cy='120' r='5'/%3E%3Ccircle cx='130' cy='180' r='9'/%3E%3Ccircle cx='60' cy='30' r='8'/%3E%3Ccircle cx='110' cy='100' r='10'/%3E%3Ccircle cx='150' cy='160' r='6'/%3E%3Ccircle cx='80' cy='140' r='7'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.footer-container,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}

.footer-column {
    padding: 20px;
    box-sizing: border-box;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

/* Columna Izquierda: Logo y datos de empresa */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-company-info h3 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-company-info p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
    opacity: 0.9;
    font-family: 'Lato', sans-serif;
}

.footer-company-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-company-info a:hover {
    color: #29b6f6;
}

/* Columna Central: Menú del footer */
.footer-center ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-center ul li {
    margin-bottom: 12px;
}

.footer-center a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-center a:hover {
    color: #29b6f6;
    opacity: 1;
}

/* Columna Derecha: Galería */
.footer-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 5px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer Bottom: Copyright */
.footer-bottom {
    max-width: 100%;
    margin: 40px auto 0;
    padding: 20px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    body {
        overflow-x: hidden;
    }
    /* About Section Tablets */
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: row;
        justify-content: center;
    }

    /* Services Section Tablets */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Portfolio Section Tablets */
    .portfolio-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .portfolio-large {
        grid-row: span 1;
    }

    /* Footer tablets: 2 columnas */
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .site-logo {
        max-width: 120px;
    }

    .site-logo img {
        max-height: 40px;
    }

    /* Mostrar botón hamburguesa */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Menú móvil */
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }

    .main-navigation.active {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .main-navigation a {
        font-size: 16px;
        color: #333;
    }

    .site-header.with-slider .main-navigation a {
        color: #333;
    }
    
    /* Slider responsive para móviles */
    .hero-slider {
        height: 100vh;
        min-height: 500px;
    }
    
    .slide-content {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .slide-content h1 {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    /* Formatos de texto responsive */
    .slide-content-format1,
    .slide-content-format2 {
        padding: 30px 20px;
    }
    
    .slide-button {
        padding: 12px 30px;
        font-size: 14px;
        margin-top: 20px;
    }
    
    .site-main {
        padding: 60px 20px;
        width: 100%;
    }
    
    .site-main h1 {
        font-size: 32px;
    }

    /* About Section Responsive */
    .about-content {
        flex-direction: column;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        min-width: 100%;
        padding: 20px 25px;
    }

    .stat-label {
        font-size: 16px;
    }

    .about-text p {
        font-size: 16px;
    }

    /* Parallax Section Responsive */
    .section-parallax {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .parallax-title {
        font-size: 36px;
    }

    .parallax-subtitle {
        font-size: 18px;
    }

    .parallax-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .parallax-button {
        width: 100%;
        max-width: 300px;
    }

    /* Services Section Responsive */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Features Section Responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* CTA Section Responsive */
    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    /* Portfolio Section Responsive */
    .portfolio-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .portfolio-large {
        grid-row: span 1;
    }

    .portfolio-overlay h3 {
        font-size: 18px;
    }

    /* Footer responsive móvil: 1 columna */
    .footer-container {
        grid-template-columns: 1fr !important;
        padding: 0 20px;
        gap: 30px;
    }

    .footer-column {
        padding: 15px;
    }

    .footer-column:nth-child(3) {
        grid-column: span 1;
    }

    .footer-logo img {
        max-width: 120px;
    }

    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-company-info p {
        font-size: 13px;
    }

    .footer-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .footer-bottom {
        padding: 15px 20px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 22px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .slide-button {
        padding: 10px 25px;
        font-size: 12px;
    }
    
    .slide-content-format1,
    .slide-content-format2 {
        padding: 20px 15px;
    }
}
