:root {
    --primary: #00ff00;
    /* Sigga Vibrant Green */
    --primary-hover: #00cc00;
    --dark: #000000;
    --dark-lighter: #0f1113;
    --text-light: #ffffff;
    --text-muted: #a0aec0;
    --glass: rgba(255, 255, 255, 0.05);
    --gradient: linear-gradient(135deg, #00ff00 0%, #008000 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--glass);
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    cursor: pointer;
}

.btn-outline {
    border: 1px solid var(--glass);
    color: var(--text-light);
}

.btn-outline:hover {
    background: var(--glass);
}

.btn-primary {
    background: var(--gradient);
    color: black;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.5);
}

/* --- HERO SECTION WITH CAROUSEL --- */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    overflow: hidden;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    z-index: 1;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 35px;
}

/* --- FEATURES --- */
.section-title {
    text-align: center;
    padding: 80px 5% 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 5% 80px;
}

.feature-card {
    background: #111;
    border-radius: 12px;
    border: 1px solid var(--glass);
    transition: 0.3s;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.1);
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid var(--glass);
}

.feature-card-content {
    padding: 30px 25px 40px;
    flex: 1;
}

.feature-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- VIDEO SECTION --- */
.video-section {
    padding: 80px 5%;
    text-align: center;
    background: var(--dark-lighter);
}

.video-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.video-responsive-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass);
    background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
    cursor: pointer;
    transition: 0.3s;
}

.video-responsive:hover {
    transform: scale(1.02);
    border-color: var(--primary);
}

.video-placeholder-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: url('/images/banner1.webp') no-repeat center center;
    background-size: cover;
}

.video-placeholder-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: black;
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.4);
    transition: 0.3s;
}

.video-responsive:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.6);
}

.video-placeholder-text {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- CONTACT MODEL SECTION --- */
.contact-model-section {
    background: #000;
    padding: 100px 5%;
    width: 100%;
    border-top: 1px solid var(--glass);
}

.contact-model-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 60px;
}

.contact-text-wrapper {
    flex: 1;
    text-align: left;
}

.contact-text-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
    line-height: 1.2;
}

.contact-text-wrapper p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 35px;
    max-width: 550px;
}

.btn-whatsapp {
    background: var(--primary);
    color: black;
    padding: 18px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    background: #00ff00;
    box-shadow: 0 15px 30px rgba(0, 255, 0, 0.3);
}

.model-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.model-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* --- TESTIMONIALS --- */
.testimonials {
    background: var(--dark-lighter);
    padding: 80px 5%;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--dark);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--glass);
}

.stars {
    color: var(--primary);
    margin-bottom: 15px;
}

.client {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    border: 1px solid var(--primary);
    font-weight: bold;
}

/* --- FOOTER --- */
footer {
    padding: 50px 5%;
    border-top: 1px solid var(--glass);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    background: #000;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.22rem;
    }

    .hero {
        height: auto;
        min-height: 60vh;
        padding-top: 100px;
    }

    .contact-model-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .contact-text-wrapper {
        order: 1;
    }

    .model-image-wrapper {
        order: 2;
        width: 100%;
    }

    .desktop-model-image {
        display: none;
    }

    .mobile-model-image {
        display: block;
        width: 100%;
        height: 400px;
        background-image: url('../images/modelo_v.webp');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center bottom;
    }
}