/* ================= PALETA DE COLORES Y VARIABLES ================= */
:root {
    --bg-dark: #121212; /* Gris muy oscuro, no negro total */
    --bg-card: #1e1e1e;
    --orange-main: #ff7300;
    --orange-light: #ff9d47;
    --orange-dark: #cc5c00;
    --text-light: #f4f4f4;
    --text-muted: #b3b3b3;
    --whatsapp-color: #25D366;
}

/* ================= RESET Y MOBILE FIRST ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* ================= NAVEGACIÓN ================= */
header {
    background-color: #000000f2;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--orange-main);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: auto;
}

.logo {
    color: var(--orange-main);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.img-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: none;
    list-style: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #000;
    text-align: center;
    padding: 20px 0;
}

.nav-links.active {
    display: flex;
}

.nav-links li {
    margin: 15px 0;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--orange-main);
}

.menu-toggle {
    color: var(--orange-main);
    font-size: 1.8rem;
    cursor: pointer;
    display: none !important;
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block !important;
    }
}

/* ================= HERO SECTION (OPTIMIZADO PARA LA ILUSTRACIÓN) ================= */

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 25px;
}

.hero-logo {
    width: 220px; /* Podés ajustar el tamaño si lo querés más grande o chico */
    height: 220px;
    object-fit: contain;
    border-radius: 50%; /* Asegura el formato circular */
    
    /* Opcional: Le da un brillo naranja suave de fondo sin arruinar la transparencia */
    filter: drop-shadow(0 4px 15px rgba(255, 115, 0, 0.35));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05); /* Pequeño efecto de zoom al pasar el mouse */
}

.hero {
    padding: 110px 20px 40px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #221204 100%);
    border-bottom: 1px solid var(--orange-dark);
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.hero h1 {
    font-size: 2.2rem;
    color: var(--orange-main);
    margin-bottom: 20px;
}

.hero-image-container {
    max-width: 450px;
    margin: 0 auto 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
    border: 2px solid var(--orange-main);
}

.hero-character-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    padding: 16px 20px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-phone {
    background-color: var(--orange-main);
    color: #fff;
    border: none;
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: #fff;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 115, 0, 0.3);
}

/* ================= SECCIONES GENERALES ================= */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

h2.section-title {
    text-align: center;
    color: var(--orange-main);
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* ================= SOBRE NOSOTROS ================= */
.about-content {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--orange-main);
    margin-bottom: 30px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--bg-card);
    padding: 15px;
    border-radius: 8px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--orange-main);
}

/* ================= SERVICIOS ================= */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background-color: var(--bg-card);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    transition: border-color 0.3s;
}

.service-card:hover {
    border-color: var(--orange-main);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 115, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--orange-main);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover i {
    transform: rotate(-12deg) scale(1.25);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* ================= TESTIMONIOS ================= */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.review-card {
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: 10px;
    font-style: italic;
}

.review-card .stars {
    color: var(--orange-main);
    margin-bottom: 10px;
}

.review-card h4 {
    margin-top: 15px;
    font-style: normal;
    color: var(--orange-light);
}

/* ================= MAPA ================= */
.map-container {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--orange-main);
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ================= FOOTER ================= */
footer {
    background-color: #000;
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #333;
    margin-top: 40px;
}

.seo-footer-text {
    font-size: 0.85rem;
    color: #777;
    margin-top: 20px;
    line-height: 1.5;
}

/* ================= VERSION DESKTOP / RESPONSIVE ================= */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        background-color: transparent;
        padding: 0;
    }

    .nav-links li {
        margin: 0 0 0 25px;
    }

    .hero {
        padding: 140px 20px 60px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .cta-container {
        flex-direction: row;
        justify-content: center;
    }

    .about-features {
        flex-direction: row;
        justify-content: space-between;
    }

    .services-grid, .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ================= SCROLL REVEAL ANIMATIONS ================= */
.reveal {
    opacity: 0;
    transform: translateY(55px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.from-left {
    transform: translateX(-65px);
}

.reveal.from-right {
    transform: translateX(65px);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ================= BOTÓN FLOTANTE WHATSAPP (DESKTOP) ================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 999;
    background-color: var(--whatsapp-color);
    color: #fff;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: wa-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.8);
    animation: none;
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5); }
    50%       { box-shadow: 0 4px 35px rgba(37, 211, 102, 0.95); }
}

@media (max-width: 767px) {
    .whatsapp-float {
        display: none !important;
    }
}

/* ================= STICKY CTA BAR (MOBILE) ================= */
.sticky-cta {
    display: none;
}

@media (max-width: 767px) {
    .sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 998;
        box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.6);
    }

    .sticky-btn {
        flex: 1;
        padding: 15px 10px;
        text-align: center;
        font-size: 1rem;
        font-weight: bold;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #fff;
        transition: filter 0.2s;
    }

    .sticky-btn:active {
        filter: brightness(0.85);
    }

    .sticky-phone {
        background-color: var(--orange-main);
    }

    .sticky-whatsapp {
        background-color: var(--whatsapp-color);
    }

    body {
        padding-bottom: 56px;
    }
}

/* ================= ACTIVE NAV LINK ================= */
.nav-links a.active {
    color: var(--orange-main);
    font-weight: bold;
}

/* ================= STATS STRIP ================= */
.stats-strip {
    background: linear-gradient(135deg, #1a0a00, #2a1200);
    border-top: 2px solid var(--orange-dark);
    border-bottom: 2px solid var(--orange-dark);
    padding: 40px 20px !important;
    max-width: 100% !important;
    width: 100%;
    margin: 0 !important;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    min-width: 140px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--orange-main);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange-light);
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ================= FAQ ================= */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--bg-card);
    border-radius: 10px;
    border: 1px solid #333;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: var(--orange-main);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 18px 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--orange-light);
}

.faq-question i {
    flex-shrink: 0;
    color: var(--orange-main);
    transition: transform 0.35s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
}