/* ====== RESET GENERAL ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #ffffff;
    color: #1a1a1a;
}

/* ====== NAVBAR ====== */
.navbar {
    width: 100%;
    height: 80px;
    padding: 0 40px;
    /* background: rgba(0, 0, 0, 0.15); */
    background: #2b8a79c5;
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 20;
}

.logo img {
    height: 55px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
    color: #AEE5D8;
border-bottom: 3px solid #AEE5D8;
}

/* ====== MENU MÓVIL ====== */
.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #2b8a78;
    position: fixed;
    top: 80px;
    right: 0;
    width: 100%;
    padding: 20px;
    z-index: 15;
}

.mobile-menu a {
    color: white;
    padding: 12px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* ====== HERO/BANNER ====== */
.hero {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(43, 138, 120, 0.45);
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
}


.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ====== BOTONES ====== */
.btn-primary {
    background: #2b8a78;
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 12px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #1f675a;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: white;
    color: #2b8a78;
}

/* ========================= */
/* SECCIÓN: ¿QUÉ ES TÉ + COWORKING? */
/* ========================= */
.about-section {
    padding: 100px 40px;
    background: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2b8a78;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
}



/* ========================= */
/* SECCIÓN: POR QUÉ ELEGIRNOS */
/* ========================= */
.why-section {
    padding: 100px 40px;
    text-align: center;
    background: #f5fffb;
}

.why-section h2 {
    font-size: 2.5rem;
    color: #2b8a78;
    margin-bottom: 50px;
}

.why-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 35px;
}

.why-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-item img {
    width: 55px;
    margin-bottom: 15px;
}

.why-item h3 {
    font-size: 1.1rem;
}



/* ========================= */
/* SECCIÓN: ESPACIOS DISPONIBLES */
/* ========================= */
.spaces-section {
    padding: 100px 40px;
    background: #ffffff;
    text-align: center;
}

.spaces-section h2 {
    font-size: 2.5rem;
    color: #2b8a78;
    margin-bottom: 50px;
}

.spaces-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.space-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.space-card:hover {
    transform: translateY(-6px);
}

.space-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.space-card h3 {
    font-size: 1.4rem;
    margin: 20px 0 10px;
}

.space-card p {
    padding: 0 20px 20px;
    line-height: 1.5;
}

.space-btn {
    display: block;
    text-decoration: none;
    background: #2b8a78;
    color: white;
    padding: 12px;
    margin: 0 20px 20px;
    border-radius: 6px;
    transition: 0.3s;
}

.space-btn:hover {
    background: #1f675a;
}


/* ========================= */
/* CTA FINAL */
/* ========================= */
.final-cta {
    background: #1f675a;
    padding: 80px 40px;
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.cta-btn {
    background: #AEE5D8;
    color: #1f675a;
    padding: 14px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: .3s;
}

.cta-btn:hover {
    background: #8fd3c1;
}



/* ========================= */
/* FOOTER */
/* ========================= */
.footer {
    background: #2b8a78;
    color: white;
    padding: 70px 40px 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 50px;
    align-items: flex-start;
}

/* Columna */
.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.footer-text {
    margin-top: 15px;
    line-height: 1.6;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
}


/* ========================= */
/* REDES SOCIALES (tu código) */
/* ========================= */
.social {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

.social-icon {
    font-size: 22px;
    text-decoration: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white;
}

.social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-icon.facebook {
    background-color: #1877f2;
}
.social-icon.tiktok {
    background: linear-gradient(135deg, #25f4ee 0%, #000000 40%, #fe2c55 100%);
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}


/* WHATSAPP */
.whatsapp {
    margin-top: 20px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25d366;
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

.whatsapp-link i {
    font-size: 20px;
}

.whatsapp-link:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
}



/* ========================= */
/* PARTE INFERIOR */
/* ========================= */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    font-size: 0.95rem;
    opacity: 0.8;
}



/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 700px) {
    .social {
        justify-content: center;
    }

    .footer-container {
        text-align: center;
    }

    .whatsapp {
        text-align: center;
    }
}



/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-img img {
        max-width: 90%;
        margin-top: 20px;
    }
}






/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }
}



@media (max-width: 600px) {

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 280px;
        margin-right: 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}
