/* Reset básico y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ========= HEADER ========= */
.site-header {
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

/* Logo */
.logo {
    max-width: 180px;
    width: auto;
    z-index: 1001;
}

.logo-img {
    width: auto;
    height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Menú de navegación */
.menu {
    flex: 1;
    margin-left: 40px;
}

.menu ul {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu a {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    padding: 5px 10px;
    white-space: nowrap;
}

.menu a:hover {
    color: #ff6f61;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6f61;
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.menu a.active {
    color: #ff6f61;
}

.menu a.active::after {
    width: 100%;
}

/* Menú Hamburguesa */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.hamburger-box {
    width: 35px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    width: 100%;
    height: 3px;
    background: #333;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    width: 100%;
    height: 3px;
    background: #333;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

/* Estados activos del menú hamburguesa */
.menu-active .hamburger-inner {
    background: transparent;
}

.menu-active .hamburger-inner::before {
    transform: translateY(8px) rotate(45deg);
}

.menu-active .hamburger-inner::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Overlay del menú móvil */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu-active .menu-overlay {
    display: block;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 992px) {
    .hamburger {
        display: block;
    }
    
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 25px rgba(0,0,0,0.1);
        padding: 80px 30px 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin-left: 0;
        z-index: 1000;
    }
    
    .menu-active .menu {
        right: 0;
    }
    
    .menu ul {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .menu a {
        font-size: 1.1rem;
        padding: 8px 0;
        display: block;
    }

    /* Ajustes de logo */
    .logo {
        max-width: 140px;
    }
    
    .logo-img {
        height: 45px;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 120px;
    }
    
    .logo-img {
        height: 40px;
    }

    .menu ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .menu a {
        font-size: 1.1rem;
        padding: 8px 0;
        display: block;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 100px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .menu {
        width: 100%;
        padding: 90px 20px 20px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.highlight-text {
    position: relative;
    font-size: 4.5rem;
    font-weight: 700;
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    color: #fff;
    text-shadow: 
        -1px -1px 0 #000,  /* Contorno negro */
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000,
        0 0 3px #fff,
        0 0 7px #fff,
        0 0 15px #ff6f61,
        0 0 30px #ff6f61;
    animation: neonPulse 1.5s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from {
        text-shadow: 
            -1px -1px 0 #000,
             1px -1px 0 #000,
            -1px  1px 0 #000,
             1px  1px 0 #000,
            0 0 3px #fff,
            0 0 7px #fff,
            0 0 15px #ff6f61,
            0 0 30px #ff6f61;
    }
    to {
        text-shadow: 
            -1px -1px 0 #000,
             1px -1px 0 #000,
            -1px  1px 0 #000,
             1px  1px 0 #000,
            0 0 2px #fff,
            0 0 5px #fff,
            0 0 12px #ff6f61,
            0 0 25px #ff6f61;
    }
}

.hero-content h1 span:not(.highlight-text) {
    position: relative;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-content p {
    max-width: 800px;
    margin: 1.5rem auto;
    font-size: 1.4rem;
    line-height: 1.6;
    text-align: center;
    padding: 0 20px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    background: #ff6f61;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 2s ease-out;
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.4);
    text-align: center;
    width: fit-content;
    margin: 2rem auto;
    white-space: pre-line;
    line-height: 1.4;
    min-width: 280px;
}

.btn span {
    text-align: center;
    width: 100%;
}

.btn:hover {
    background: #ff4d3b;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 111, 97, 0.6);
}

/* Animaciones base */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animaciones personalizadas */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Efecto reveal para elementos a la izquierda */
.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
    animation: fadeInLeft 0.8s ease-out;
}

/* Efecto reveal para elementos a la derecha */
.reveal-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
    animation: fadeInRight 0.8s ease-out;
}

/* Features Section */
.features {
    padding: 6rem 0;
    width: 100%;
}

.features .section-title {
    text-align: center;
    width: 100%;
    margin-bottom: 4rem;
    font-size: 2.8rem;
    color: #222;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 6rem;
    position: relative;
    gap: 4rem;
}

.feature-image {
    flex: 1.6; /* Aumentamos la proporción de la imagen */
    padding: 0;
}

.feature-text {
    flex: 1; /* El texto ocupa menos espacio */
    padding: 2rem;
}

.feature-image img {
    width: 100%;
    max-width: 800px; /* Aumentamos el tamaño máximo */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: block;
}

.feature-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #222;
    line-height: 1.3;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .highlight-text {
        font-size: 4rem;
    }
    .hero-content h1 {
        gap: 1.8rem;
    }
    .hero-content h1 span:not(.highlight-text) {
        font-size: 2.3rem;
    }
    .hero-content p {
        font-size: 1.35rem;
    }
}

@media (max-width: 1200px) {
    .highlight-text {
        font-size: 3.5rem;
        text-shadow: 
            -1px -1px 0 #000,
             1px -1px 0 #000,
            -1px  1px 0 #000,
             1px  1px 0 #000,
            0 0 3px #fff,
            0 0 7px #fff,
            0 0 15px #ff6f61;
    }
    .hero-content h1 {
        gap: 1.6rem;
    }
    .hero-content h1 span:not(.highlight-text) {
        font-size: 2.1rem;
    }
    .hero-content p {
        font-size: 1.3rem;
    }
    .feature-image {
        flex: 1.4;
    }
}

@media (max-width: 992px) {
    .highlight-text {
        font-size: 3rem;
    }
    .hero-content h1 {
        gap: 1.4rem;
    }
    .hero-content h1 span:not(.highlight-text) {
        font-size: 1.9rem;
    }
    .hero-content p {
        font-size: 1.25rem;
    }
    .feature-item {
        flex-direction: column;
        gap: 2rem;
    }
    
    .feature-image, .feature-text {
        flex: none;
        width: 100%;
        padding: 1rem;
    }
    
    .feature-image img {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .highlight-text {
        font-size: 2.6rem;
        text-shadow: 
            -1px -1px 0 #000,
             1px -1px 0 #000,
            -1px  1px 0 #000,
             1px  1px 0 #000,
            0 0 3px #fff,
            0 0 10px #ff6f61;
    }
    
    .highlight-text:hover {
        transform: translateY(-5px);
    }
    .hero-content h1 {
        gap: 1.2rem;
    }
    .hero-content {
        padding: 0 15px;
    }
    .hero-content h1 span:not(.highlight-text) {
        font-size: 1.7rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .highlight-text {
        font-size: 2.2rem;
        text-shadow: 
            -1px -1px 0 #000,
             1px -1px 0 #000,
            -1px  1px 0 #000,
             1px  1px 0 #000,
            0 0 3px #fff,
            0 0 8px #ff6f61;
    }
    
    .highlight-text:hover {
        transform: translateY(-3px);
    }
    .hero-content h1 {
        gap: 1rem;
    }
    .hero-content {
        padding: 0 10px;
    }
    .hero-content h1 span:not(.highlight-text) {
        font-size: 1.5rem;
    }
    .hero-content p {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .highlight-text {
        font-size: 2rem;
        text-shadow: 
            -1px -1px 0 #000,
             1px -1px 0 #000,
            -1px  1px 0 #000,
             1px  1px 0 #000,
            0 0 2px #fff,
            0 0 6px #ff6f61;
    }
    
    .highlight-text:hover {
        transform: translateY(-3px);
    }
    .hero-content h1 {
        gap: 0.8rem;
    }
    .hero-content h1 span:not(.highlight-text) {
        font-size: 1.4rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .highlight-text {
        font-size: 1.8rem;
        line-height: 1.5;
    }
    .hero-content h1 {
        gap: 0.6rem;
    }
    .hero-content h1 span:not(.highlight-text) {
        font-size: 1.3rem;
    }
    .hero-content p {
        font-size: 1.05rem;
    }
}

@media (max-width: 350px) {
    .highlight-text {
        font-size: 1.2rem;
        padding: 0 0.3rem;
    }
    .hero-content h1 {
        gap: 0.4rem;
    }
}

/* Nueva Sección Paralaje */
.parallax-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/parallax-bg.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Efecto paralaje */
    color: #fff;
    text-align: center;
    padding: 8rem 0;
}

.parallax-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.parallax-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.parallax-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1.5s ease-out;
}

.icon-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.icon-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.icon-box i {
    font-size: 2.5rem;
    color: #ff6f61;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.icon-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.3;
}

.icon-box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .icon-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .icon-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .icon-box {
        padding: 2rem 1.5rem;
    }

    .icon-box h3 {
        font-size: 1.3rem;
    }
}

/* Sección Beneficios Clave */
.benefits {
    padding: 6rem 0;
    background-color: #fff;
}

.benefits .section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #222;
    text-align: center;
}

.benefits .section-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #eee;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #ff6f61;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #222;
    line-height: 1.3;
}

.benefit-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.additional-benefits {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.benefit-highlight:last-child {
    border-bottom: none;
}

.benefit-highlight i {
    font-size: 1.5rem;
    color: #28a745;
}

.benefit-highlight p {
    font-size: 1.1rem;
    color: #444;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits .section-title {
        font-size: 2.2rem;
    }

    .benefits .section-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }

    .benefit-item h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .benefits .section-title {
        font-size: 2rem;
    }

    .additional-benefits {
        padding: 1.5rem;
    }

    .benefit-highlight {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Footer */
.site-footer {
    background: #222;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    text-align: left;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff6f61;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6f61;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #ff6f61;
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1rem;
}

.back-to-top {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #ff6f61;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.back-to-top:hover {
    background: #ff4d3b;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}
/* Sección Cómo Funciona */
.how-it-works {
    padding: 6rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #222;
    animation: fadeInUp 1s ease-out;
}

.section-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1.5s ease-out;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #ff6f61;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item i {
    font-size: 2.5rem;
    color: #ff6f61;
    background: #fff;
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.timeline-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #222;
}

.timeline-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.timeline-item.left .timeline-content {
    margin-left: 2rem;
}

.timeline-item.right .timeline-content {
    margin-right: 2rem;
}

.timeline-item.right {
    flex-direction: row-reverse;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        margin-left: 0;
        margin-right: 0;
        margin-top: 1rem;
    }
}
/* Sección Historial de Servicios */
.service-history {
    padding: 6rem 0;
    background-color: #fff;
    text-align: center;
}

.history-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.history-text {
    flex: 1;
    text-align: left;
}

.history-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #222;
    animation: fadeInUp 1s ease-out;
}

.history-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
    max-width: 500px;
    animation: fadeInUp 1.5s ease-out;
}

.history-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.history-features li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.history-features i {
    color: #ff6f61;
    font-size: 1.2rem;
}

.history-image {
    flex: 1;
    text-align: center;
}

.history-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.history-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .history-content {
        flex-direction: column;
        align-items: center;
    }

    .history-text {
        text-align: center;
    }

    .history-image {
        margin-top: 2rem;
    }
}
/* Sección Estadísticas Gráficas */
.stats-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #222;
    animation: fadeInUp 1s ease-out;
}

.section-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1.5s ease-out;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: wrap;
}

.stats-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    width: 48%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stats-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.stats-item i {
    font-size: 3rem;
    color: #ff6f61;
    margin-bottom: 1rem;
}

.stats-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #222;
}

.stats-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.chart-container {
    width: 100%;
    height: 300px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        align-items: center;
    }

    .stats-item {
        width: 100%;
    }
}
/* Sección FAQ */
.faq-section {
    padding: 6rem 0;
    background-color: #fff;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #222;
}

.section-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: #222;
    background: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question i {
    font-size: 1rem;
    color: #ff6f61;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    background: #fff;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Ajusta según el contenido */
    padding: 1.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}
/* Sección Documentación */
.documentation-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #222;
    animation: fadeInUp 1s ease-out;
}

.section-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1.5s ease-out;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    background: #ff6f61;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 2s ease-out;
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.4);
    text-align: center;
    width: fit-content;
    margin: 2rem auto;
    white-space: pre-line;
    line-height: 1.4;
    min-width: 280px;
}

.btn:hover {
    background: #ff4d3b;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 111, 97, 0.6);
}

/* Estilos para la Página de Documentación */
.docs-content {
    padding: 4rem 0;
    background-color: #fff;
    text-align: left;
}

.docs-section {
    margin-bottom: 2rem;
}

.docs-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #222;
}

.docs-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}
/* Sección de Video */
.video-section {
    display: none !important; /* Ocultar completamente la sección */
    padding: 4rem 0;
    background: #f9f9f9;
    text-align: center;
}

.video-section .video-container iframe {
    display: none !important; /* Ocultar también el iframe directamente */
}

.video-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #222;
}

.video-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    /* Ancho máximo del video */
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 450px;
    /* Altura fija para el video */
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-container iframe {
        height: 300px;
        /* Altura reducida para móviles */
    }
}
/* Sección de Contacto */
.contact-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #222;
}

.contact-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    font-size: 0.9rem;
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff6f61;
    outline: none;
}

.contact-form button {
    background: #ff6f61;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #e65c50;
}

.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #222;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
    color: #ff6f61;
}

.map-container iframe {
    width: 100%;
    height: 200px;
    border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        /* Un solo elemento por fila en móviles */
    }
}
/* Botón Flotante de WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    /* Color verde característico de WhatsApp */
    color: #fff;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    /* Asegura que esté sobre otros elementos */
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-button i {
    font-size: 1.5rem;
}

/* Ajustes responsivos para el botón */
@media (max-width: 768px) {
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 240px;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        min-width: 200px;
    }
}

@media (max-width: 600px) {
    .whatsapp-button {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        bottom: 10px !important;
        z-index: 10000 !important;
        width: max-content;
        min-width: 180px;
        max-width: 90vw;
        text-align: center;
    }
    .oferta-flotante {
        bottom: 70px !important;
    }
}

/* Sección de Problemas y Soluciones */
.problems-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.problems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/workshop-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.problems-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.problems-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.problems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problems-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.problem-icon {
    font-size: 2rem;
    color: #ff6f61;
    min-width: 40px;
    text-align: center;
}

.problem-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.solution-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.solution-highlight {
    color: #ff6f61;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .problems-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .problems-section {
        padding: 6rem 0;
    }

    .problems-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .problem-item {
        padding: 1.2rem;
    }

    .solution-content {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .problems-title {
        font-size: 2rem;
    }

    .problem-text {
        font-size: 1rem;
    }

    .solution-text {
        font-size: 1.1rem;
    }
}

/* Estilos para la sección CTA */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn i {
    font-size: 1.2rem;
}

.cta-btn-primary {
    background-color: #ff6f61;
    color: white;
}

.cta-btn-primary:hover {
    background-color: transparent;
    color: #ff6f61;
    transform: translateY(-3px);
}

.cta-btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.cta-btn-whatsapp:hover {
    background-color: transparent;
    color: #25D366;
    transform: translateY(-3px);
}

/* Media Queries para la sección CTA */
@media (max-width: 992px) {
    .cta-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

/* Sección Testimonio del Taller */
.testimonial-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/workshop-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.testimonial-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ff6f61;
    text-shadow: 0 0 10px rgba(255, 111, 97, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    color: #ff6f61;
    opacity: 0.3;
    position: absolute;
}

.testimonial-text::before {
    top: -2rem;
    left: -2rem;
}

.testimonial-text::after {
    bottom: -2rem;
    right: -2rem;
}

.testimonial-highlight {
    color: #ff6f61;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 111, 97, 0.3);
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 111, 97, 0.2);
    min-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 111, 97, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6f61;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 111, 97, 0.5),
                     0 0 20px rgba(255, 111, 97, 0.3),
                     0 0 30px rgba(255, 111, 97, 0.2);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 111, 97, 0.7),
                     0 0 30px rgba(255, 111, 97, 0.5),
                     0 0 40px rgba(255, 111, 97, 0.3);
    }
}

/* Media Queries para la sección Testimonial */
@media (max-width: 992px) {
    .testimonial-title {
        font-size: 3rem;
    }
    
    .testimonial-text {
        font-size: 1.3rem;
    }
    
    .stat-item {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 6rem 0;
    }
    
    .testimonial-title {
        font-size: 2.5rem;
    }
    
    .testimonial-text {
        font-size: 1.2rem;
    }
    
    .testimonial-stats {
        gap: 2rem;
    }
    
    .stat-item {
        min-width: 160px;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .testimonial-title {
        font-size: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .testimonial-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
}

/* Sección de Cierre de Venta */
.closing-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #ff6f61 0%, #ff4f3f 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.closing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.closing-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.closing-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.closing-text {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.closing-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.closing-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    background: white;
    color: #ff6f61;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.closing-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.closing-btn i {
    font-size: 1.4rem;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    animation: none;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: white;
}

@media (max-width: 576px) {
    .closing-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .closing-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Ocultar sección de documentación */
.documentation-section {
    display: none;
}

/* Estilos para el CAPTCHA */
.captcha-container {
    margin: 15px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.captcha-question {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-question input {
    width: 60px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.footer-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    font-size: 18px;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    text-decoration: none;
}
.footer-social .social-icon.facebook { background: #3b5998; }
.footer-social .social-icon.twitter { background: #1da1f2; }
.footer-social .social-icon.instagram { background: #e4405f; }
.footer-social .social-icon.youtube { background: #ff0000; }
.footer-social .social-icon:hover {
    opacity: 0.8;
    transform: scale(1.1);
    color: #fff;
}

.logo-autor-luz {
    /* filter: drop-shadow(0 0 16px #fff) drop-shadow(0 0 32px #00eaff) drop-shadow(0 0 8px #fff); */
    /* Efecto eliminado */
}

/* Estilos para la sección de planes restaurados */
.plans-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    width: 100%;
}

.plans-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.plans-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #222;
}

.plans-section .section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px auto 0;
    max-width: 1200px;
    padding: 0 15px;
}

.plan-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.plan-card.start {
    border-top: 5px solid #4CAF50;
}

.plan-card.active {
    border-top: 5px solid #2196F3;
}

.plan-card.premium {
    border-top: 5px solid #FFC107;
}

.plan-card.elite {
    border-top: 5px solid #F44336;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.plan-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.plan-price {
    margin: 20px 0;
}

.plan-price .price {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.plan-price .period {
    font-size: 16px;
    color: #666;
}

.plan-features {
    flex-grow: 1;
    margin: 30px 0;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 10px 0;
    color: #555;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
}

.plan-features li i {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 16px;
    margin-top: 3px;
}

.plan-btn {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    background: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-top: auto;
}

.plan-btn:hover {
    background: #45a049;
}

/* Nota pegada y alineada */
.plan-note {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0 !important;
    padding-top: 8px;
    color: #666;
    font-size: 14px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0 !important;
}

.plan-note p {
    margin: 0;
    line-height: 1.4;
}