/* --- VARIABLES Y RESET --- */
:root {
    --primary-color: #ff6b00; /* Color innovador: Cian brillante */
    --secondary-color: #ffffff;
    --text-dark: #111111;
    --text-light: #f4f4f4;
    --bg-dark: #000000;
    --bg-light: #ffffff;
    --bg-grey: #1a1a1a;
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.highlight {
    color: var(--primary-color);
}

/* --- BOTONES --- */
.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-primary.huge {
    font-size: 1.2rem;
    padding: 20px 40px;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    color: var(--secondary-color);
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.btn-small {
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- WHATSAPP FLOTANTE --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #ff6b00;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float img {
    width: 35px;
}

/* --- HEADER & NAV --- */
header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px; /* Ajusta según tu logo */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    color: var(--text-light);
}

.nav-links a:not(.btn-small):hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* --- HERO SECTION --- */
.hero {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    color: var(--text-light);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px; /* Header height */
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* --- SOBRE NOSOTROS --- */
.sobre-nosotros {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.text-block {
    flex: 1;
}

.sobre-nosotros h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.sobre-nosotros p {
    font-size: 1.1rem;
    color: #555;
}

.creative-element {
    flex: 1;
    display: flex;
    justify-content: center;
}

.abstract-shape {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary-color), #bdfff3);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 6s linear infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 50% 50% 33% 67% / 63% 36% 64% 37%; }
}

/* --- SERVICIOS --- */
.servicios {
    padding: 100px 0;
    background-color: var(--bg-grey);
    color: var(--text-light);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    background-color: rgba(0, 242, 254, 0.05);
}

.featured-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.8;
    height: 40px;
}

.service-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-features li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.currency {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.7;
}

/* --- SERVICIOS RÁPIDOS --- */
.servicios-rapidos {
    padding: 30px 0;
    background-color: #0c0c0c;
    color: var(--text-light);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.rapidos-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background-color: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* --- DIFERENCIAL --- */
.diferencial {
    padding: 100px 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
}

.diferencial h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.point {
    background-color: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1rem;
}

/* --- CTA SECTION --- */
.cta {
    padding: 100px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-content p {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--text-dark);
}

/* --- FOOTER --- */
footer {
    padding: 80px 0 0;
    background-color: #0c0c0c;
    color: var(--text-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
}

.logo-img-footer {
    height: 60px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-contact h4 {
    margin-bottom: 15px;
}

.footer-contact p {
    font-size: 1rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* --- RESPONSIVE (MÓVILES) --- */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.2rem; }
    .section-flex { flex-direction: column; text-align: center; }
    .abstract-shape { width: 200px; height: 200px; margin-top: 30px; }
}

@media (max-width: 768px) {
    html { font-size: 14px; }
    
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: rgba(0, 0, 0, 0.95);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 50px;
        gap: 40px;
    }

    .nav-links li { opacity: 0; }

    .menu-toggle { display: block; }

    .section-title, .sobre-nosotros h2, .diferencial h2 { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; gap: 10px; }
    .rapidos-flex { flex-direction: column; text-align: center; }
    .cta-content p { font-size: 1.4rem; }
    
    .footer-content { flex-direction: column; gap: 40px; text-align: center; }
}

.nav-active { transform: translateX(0%); }

@keyframes navLinkFade {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0px); }
}

.toggle .bar:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
.toggle .bar:nth-child(2) { opacity: 0; }
.toggle .bar:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }