/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ff6b35;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ff6b35;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 4rem 0;
    border-bottom: 3px solid #ff6b35;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature img {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
}

.feature span {
    font-size: 0.9rem;
    color: #cccccc;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background-color: #111111;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b35;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #333333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.benefit-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.benefit-card p {
    color: #cccccc;
}

/* How it Works */
.how-it-works {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b35;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step img {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.step p {
    color: #cccccc;
}

.cta-center {
    text-align: center;
}

/* Content Categories */
.content-categories {
    padding: 4rem 0;
    background-color: #111111;
}

.content-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b35;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #333333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.category:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.category img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category h3 {
    padding: 1rem;
    font-size: 1.3rem;
    color: #ff6b35;
}

.category p {
    padding: 0 1rem 1rem;
    color: #cccccc;
}

/* Movie Gallery */
.movie-gallery {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.movie-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b35;
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.movie-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.movie-item:hover {
    transform: scale(1.05);
}

.movie-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.movie-genre {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #ffffff;
    padding: 1rem 0.5rem 0.5rem;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background-color: #111111;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b35;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 2px solid #333333;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #ff6b35;
}

.faq-item h3 {
    padding: 1.5rem;
    color: #ff6b35;
    font-size: 1.2rem;
    cursor: pointer;
    border-bottom: 1px solid #333333;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-item h3:hover {
    background-color: rgba(255, 107, 53, 0.1);
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    padding: 0 1.5rem;
    color: #cccccc;
    background-color: #1a1a1a;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    line-height: 1.6;
}

.faq-item.active p {
    padding: 1.5rem;
}

/* Final CTA */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    padding: 3rem 0 1rem;
    border-top: 3px solid #ff6b35;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.whatsapp-footer {
    display: inline-block;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: #ffffff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.whatsapp-footer:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #888888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        flex-direction: column;
        padding: 1rem;
        border-top: 2px solid #ff6b35;
        gap: 1rem;
    }
    
    .nav.active {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .movies-grid {
        grid-template-columns: 1fr;
    }
}/
* Additional Styles for Internal Pages */

/* SVG Icon Colors - VERDE VIBRANTE SIMPLES */
img[src$=".svg"] {
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%) !important;
}

/* Keep WebP images without filter */
img[src$=".webp"],
img[src$=".jpg"],
img[src$=".jpeg"],
img[src$=".png"] {
    filter: none !important;
}

/* Ensure all SVG icons have VERDE VIBRANTE */
.benefit-card img[src$=".svg"],
.step img[src$=".svg"],
.feature img[src$=".svg"],
.value-card img[src$=".svg"],
.team-feature img[src$=".svg"],
.contact-method img[src$=".svg"],
.support-card img[src$=".svg"],
.about-image img[src$=".svg"],
.mission-image img[src$=".svg"],
.contact-visual img[src$=".svg"],
.cta-content img[src$=".svg"],
.hero-features img[src$=".svg"] {
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%) !important;
}

/* Logo should not have color filter */
.logo img,
.footer-logo {
    filter: none !important;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 3px solid #ff6b35;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #cccccc;
}

/* About Page Styles */
.about-content {
    padding: 4rem 0;
    background-color: #111111;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.about-text p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: auto;
}

/* Values Section */
.values {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b35;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #333333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.value-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.value-card p {
    color: #cccccc;
}

/* Mission Section */
.mission {
    padding: 4rem 0;
    background-color: #111111;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text h2 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mission-text h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.mission-text p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 10px;
    border: 2px solid #333333;
}

.stat h4 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #cccccc;
    font-size: 0.9rem;
}

.mission-image img {
    width: 100%;
    height: auto;
}

/* Team Section */
.team {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.team-intro {
    text-align: center;
    color: #cccccc;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-feature {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #333333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-feature:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.team-feature img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.team-feature h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.team-feature p {
    color: #cccccc;
}

/* Contact Page Styles */
.contact-main {
    padding: 4rem 0;
    background-color: #111111;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #333333;
}

.contact-method img {
    width: 80px;
    height: 80px;
}

.method-info h3 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.method-info p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.whatsapp-button {
    display: inline-block;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
}

.contact-features h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.contact-features ul {
    list-style: none;
    padding: 0;
}

.contact-features li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.contact-visual img {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.contact-steps h3 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-align: center;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 10px;
    border: 2px solid #333333;
}

.step-item .step-number {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-item p {
    color: #cccccc;
    margin: 0;
}

/* Support Info */
.support-info {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.support-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b35;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.support-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #333333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.support-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.support-card h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.support-card p {
    color: #cccccc;
}

/* FAQ Contact */
.faq-contact {
    padding: 4rem 0;
    background-color: #111111;
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b35;
}

/* Contact CTA */
.contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.cta-note {
    text-align: center;
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Privacy and Terms Pages */
.privacy-content,
.terms-content {
    padding: 4rem 0;
    background-color: #111111;
}

.privacy-text,
.terms-text {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-text h2,
.terms-text h2 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.privacy-text h3,
.terms-text h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.privacy-text p,
.terms-text p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.privacy-text ul,
.terms-text ul {
    color: #cccccc;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.privacy-text li,
.terms-text li {
    margin-bottom: 0.5rem;
}

.privacy-highlight,
.terms-highlight {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ff6b35;
    margin: 2rem 0;
}

.privacy-highlight h3,
.terms-highlight h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.privacy-highlight p,
.terms-highlight p {
    color: #cccccc;
    margin: 0;
}

/* Privacy and Terms CTA */
.privacy-cta,
.terms-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Mobile Responsiveness for Internal Pages */
@media (max-width: 768px) {
    .about-grid,
    .mission-content,
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .values-grid,
    .team-features,
    .support-grid {
        grid-template-columns: 1fr;
    }
}