/* Variables y reset */
:root {
    --fondo: #151c2e;
    --verde-lima: #90f077;
    --azul-logo: #1d3097;
    --texto-claro: #ffffff;
    --texto-oscuro: #151c2e;
    --gris-claro: #f5f5f5;
    --gris-oscuro: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--fondo);
    color: var(--texto-claro);
    line-height: 1.6;
}

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

/* Header y Navegación */
header {
    background: linear-gradient(135deg, var(--fondo) 0%, #1a2340 100%);
    padding: 15px 0;
    border-bottom: 3px solid #225ac4;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

.logo img {
    max-width: 200px;
    display: inline-block;
    text-align: center;
    object-fit: cover;
    vertical-align: middle;
}

.logo span:first-child {
    color: var(--verde-lima);
}

.logo span:last-child {
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--verde-lima);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--verde-lima);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--verde-lima);
    margin: 2px 0;
    transition: 0.3s;
}

/* Secciones generales */
.section {
    padding: 100px 0;
}

.section:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--verde-lima);
    text-align: center;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    opacity: 0.9;
    color: #ccc;
}

/* Hero Section */
.hero {
    padding: 120px 0;
    background: radial-gradient(circle at top right, rgba(202, 252, 144, 0.1) 0%, transparent 50%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--verde-lima);
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--verde-lima);
    color: var(--texto-oscuro);
}

.btn-primary:hover {
    background: #b1e67a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(202, 252, 144, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--verde-lima);
}

.btn-secondary:hover {
    background: var(--verde-lima);
    color: var(--texto-oscuro);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Cards */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(202, 252, 144, 0.1);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: var(--verde-lima);
    background: rgba(255, 255, 255, 0.05);
}

.card-large {
    grid-column: span 2;
}

.card-img {
    width: 100%;
    height: 290px;
    overflow: hidden;
    border-bottom: 2px solid var(--verde-lima);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a3450, #1e2740);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verde-lima);
    font-size: 16px;
    text-align: center;
    padding: 20px;
    border: none;
    font-weight: 500;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    color: var(--verde-lima);
    margin-bottom: 15px;
    font-size: 24px;
}

.card-content p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    margin-top: 15px;
}

.features-list li {
    margin-bottom: 10px;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li::before {
    content: "✓";
    color: var(--verde-lima);
    font-weight: bold;
}

/* Formulario de contacto */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(202, 252, 144, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(202, 252, 144, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--verde-lima);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Footer */
footer {
    background: #0f1422;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(202, 252, 144, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--verde-lima);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--verde-lima);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--fondo);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        border-top: 1px solid var(--verde-lima);
    }

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

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-buttons {
        justify-content: center;
    }

    h2 {
        font-size: 32px;
    }

    .card-large {
        grid-column: span 1;
    }

    .contact-container {
        padding: 20px;
    }
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeIn 1s ease-out;
}

/* ===== NUEVAS SECCIONES INFORMATIVAS ===== */

/* Info Sections */
.info-section {
    margin: 100px 0 60px;
    padding: 40px 0;
    border-top: 1px solid rgba(202, 252, 144, 0.2);
    border-bottom: 1px solid rgba(202, 252, 144, 0.2);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-section.reverse .info-grid {
    direction: rtl;
}

.info-section.reverse .info-text {
    direction: ltr;
}

.info-text h3 {
    font-size: 32px;
    color: var(--verde-lima);
    margin-bottom: 20px;
}

.info-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-feature i {
    font-size: 28px;
    color: var(--verde-lima);
    background: rgba(202, 252, 144, 0.1);
    padding: 15px;
    border-radius: 15px;
    min-width: 60px;
    text-align: center;
}

.info-feature h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 8px;
}

.info-feature p {
    font-size: 16px;
    margin-bottom: 0;
    color: #aaa;
}

.info-image {
    position: relative;
}

.info-placeholder {
    height: 400px;
    font-size: 24px;
    background: linear-gradient(135deg, #2a3450, #1a2340);
    /* border: 2px solid var(--verde-lima); */
    /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); */
}

.info-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    display: block;
    /* color: var(--verde-lima); */
    opacity: 0.8;
}

/* Benefits Section */
.benefits-section {
    margin-top: 60px;
    text-align: center;
}

.benefits-section h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(202, 252, 144, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--verde-lima);
    background: rgba(202, 252, 144, 0.05);
}

.benefit-card i {
    font-size: 40px;
    color: var(--verde-lima);
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #aaa;
    font-size: 14px;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 40px;
    background: rgba(202, 252, 144, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(202, 252, 144, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 40px;
    color: var(--verde-lima);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: white;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    color: #aaa;
    font-size: 16px;
}

/* Comparison Table */
.comparison-section {
    margin-top: 60px;
}

.comparison-section h3 {
    text-align: center;
    font-size: 28px;
    color: white;
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
}

.comparison-table th {
    background: var(--verde-lima);
    color: var(--texto-oscuro);
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
}

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(202, 252, 144, 0.1);
    color: #ccc;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: bold;
    color: white;
}

.comparison-table td:nth-child(2) {
    color: #ff6b6b;
}

.comparison-table td:nth-child(3) {
    color: var(--verde-lima);
}

.comparison-table tr:hover td {
    background: rgba(202, 252, 144, 0.05);
}

/* Workflow Section */
.workflow-section {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
}

.workflow-section h3 {
    text-align: center;
    font-size: 28px;
    color: white;
    margin-bottom: 50px;
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.workflow-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background: rgba(202, 252, 144, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(202, 252, 144, 0.2);
    transition: all 0.3s ease;
}

.workflow-step:hover {
    transform: scale(1.05);
    border-color: var(--verde-lima);
    background: rgba(202, 252, 144, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--verde-lima);
    color: var(--texto-oscuro);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.workflow-step i {
    font-size: 40px;
    color: var(--verde-lima);
    margin-bottom: 15px;
}

.workflow-step h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 18px;
}

.workflow-step p {
    color: #aaa;
    font-size: 14px;
}

.workflow-arrow {
    color: var(--verde-lima);
    font-size: 30px;
    opacity: 0.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-section.reverse .info-grid {
        direction: ltr;
    }
    
    .workflow-steps {
        flex-direction: column;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .stats-section {
        grid-template-columns: 1fr 1fr;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.whatsapp-float span {
    display: none;
    font-size: 16px;
    font-weight: 600;
    margin-left: 10px;
}

.whatsapp-float:hover {
    width: 180px;
    border-radius: 30px;
    background: #20b859;
}

.whatsapp-float:hover i {
    margin-right: 5px;
}

.whatsapp-float:hover span {
    display: inline;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    /* transition: opacity 0.5s ease, visibility 0.5s ease; */
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide .placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a3450, #1e2740);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--verde-lima);
    font-size: 1rem;
    text-align: center;
    padding: 20px;
    font-weight: 500;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.slide .placeholder-img i {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
}
@media screen and (max-width: 800px) {
    .slide .placeholder-img {
        width: 100%;
        height: 350px;
        padding: 20px;
    }
    .slider-controls {
        bottom: 80px;
    }
    .hero-slider {
        border-bottom: 2px solid var(--verde-lima);
    }
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--verde-lima);
    color: var(--texto-oscuro);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--verde-lima);
    transform: scale(1.2);
}

/* Cards 3D Hover Effect */
.card-hover-3d {
    perspective: 1500px;
    background: none;
    border: none;
}

.card-hover-3d .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    min-height: 450px;
}

.card-hover-3d:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(202, 252, 144, 0.1);
    backdrop-filter: blur(10px);
}

.card-front {
    transform: rotateY(0deg);
}

.card-back {
    transform: rotateY(180deg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--fondo), #1a2340);
    border: 2px solid var(--verde-lima);
}

.card-back h3 {
    color: var(--verde-lima);
    margin-bottom: 20px;
    font-size: 24px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 20px;
    align-self: flex-start;
}

/* Pricing Section */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--verde-lima);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.save-badge {
    background: var(--verde-lima);
    color: var(--texto-oscuro);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-left: 5px;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(202, 252, 144, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--verde-lima);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular {
    border: 2px solid var(--verde-lima);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--verde-lima);
    color: var(--texto-oscuro);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: bold;
}

.pricing-header h3 {
    color: var(--verde-lima);
    font-size: 28px;
    margin-bottom: 20px;
}

.price {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.price span {
    font-size: 16px;
    font-weight: normal;
    opacity: 0.7;
}

.annual-price {
    display: none;
}

.pricing-card.annual .monthly-price {
    display: none;
}

.pricing-card.annual .annual-price {
    display: inline;
}

.pricing-features {
    margin: 30px 0;
    text-align: left;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    width: 20px;
}

.pricing-features .fa-check {
    color: var(--verde-lima);
}

.pricing-features .fa-times {
    color: #ff6b6b;
}

/* Testimonials */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    height: 400px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 20px;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(202, 252, 144, 0.1);
}

.testimonial-content .fa-quote-left {
    font-size: 40px;
    color: var(--verde-lima);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar i {
    font-size: 60px;
    color: var(--verde-lima);
}

.author-info h4 {
    color: var(--verde-lima);
    margin-bottom: 5px;
    font-size: 18px;
}

.author-info p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.rating i {
    color: #ffd700;
    margin-right: 2px;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--verde-lima);
    color: var(--texto-oscuro);
}

/* Contact Options */
.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

.whatsapp-option:hover {
    background: #20b859;
    transform: translateY(-2px);
}

.email-option {
    background: var(--azul-logo);
    color: white;
}

.email-option:hover {
    background: #2440b8;
    transform: translateY(-2px);
}

.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(202, 252, 144, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.form-group select option {
    background: var(--fondo);
    color: white;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--verde-lima);
    transform: translateY(-3px);
}

/* Mensajes flotantes */
.mensaje-flotante {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 30px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    z-index: 2000;
    animation: slideIn 0.3s ease;
    display: none;
}

.mensaje-flotante.exito {
    background: var(--verde-lima);
    color: var(--texto-oscuro);
}

.mensaje-flotante.error {
    background: #ff6b6b;
    color: white;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .card-hover-3d .card-inner {
        min-height: 500px;
    }
    
    .contact-options {
        flex-direction: column;
    }
    
    .contact-option {
        justify-content: center;
    }
    
    .whatsapp-float:hover {
        width: 60px;
    }
    
    .whatsapp-float span {
        display: none;
    }
}
/* Variables y reset (mantener los anteriores y AÑADIR:) */

/* Feature Sections */
.feature-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.feature-section.alt-bg {
    background: rgba(202, 252, 144, 0.02);
    border-top: 1px solid rgba(202, 252, 144, 0.1);
    border-bottom: 1px solid rgba(202, 252, 144, 0.1);
}

.feature-header {
    text-align: center;
    margin-bottom: 60px;
}

.feature-number {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    color: var(--verde-lima);
    background: rgba(202, 252, 144, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(202, 252, 144, 0.3);
}

.feature-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.feature-subtitle {
    font-size: 20px;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-content.reverse {
    direction: rtl;
}

.feature-content.reverse .feature-description {
    direction: ltr;
}

.feature-image {
    position: relative;
}

.feature-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #2a3450, #1a2340);
    border: 2px solid var(--verde-lima);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}

.feature-placeholder:hover {
    transform: scale(1.02);
}

.feature-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    color: var(--verde-lima);
    opacity: 0.8;
}

.feature-description h3 {
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-description > p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.detail-item div {
    max-width: 100%;
    display: inline-block;
}

.detail-item i {
    font-size: 28px;
    color: var(--verde-lima);
    background: rgba(202, 252, 144, 0.1);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    display: inline-block;
    width: 15%;
}

.detail-item h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 8px;
    text-align: left;
}

.detail-item p {
    color: #aaa;
    line-height: 1.6;
    text-align: left;
}

/* Grid de detalles para órdenes */
.feature-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.detail-item-mini {
    background: rgba(202, 252, 144, 0.05);
    border: 1px solid rgba(202, 252, 144, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.detail-item-mini:hover {
    background: rgba(202, 252, 144, 0.1);
    transform: translateY(-3px);
}

.detail-item-mini i {
    font-size: 24px;
    color: var(--verde-lima);
    margin-bottom: 8px;
    display: block;
}

.detail-item-mini span {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* Feature Stats */
.feature-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-mini {
    text-align: center;
}

.stat-mini-number {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: var(--verde-lima);
    margin-bottom: 5px;
}

.stat-mini span:last-child {
    color: #aaa;
    font-size: 14px;
}

/* Feature Badge */
.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(202, 252, 144, 0.1);
    border: 1px solid var(--verde-lima);
    padding: 10px 20px;
    border-radius: 40px;
    margin-top: 20px;
}

.feature-badge i {
    color: var(--verde-lima);
    font-size: 20px;
}

.feature-badge span {
    color: white;
    font-weight: 500;
}

/* Pricing Section (mejorado) */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--fondo), #0f1422);
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    padding: 40px 30px;
    border: 1px solid rgba(202, 252, 144, 0.1);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--verde-lima);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.pricing-card.popular {
    border: 2px solid var(--verde-lima);
    transform: scale(1.05);
    background: rgba(202, 252, 144, 0.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--verde-lima);
    color: var(--texto-oscuro);
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 15px;
}

.price {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.price span {
    font-size: 16px;
    font-weight: normal;
    opacity: 0.7;
}

/* Formulario mejorado */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(202, 252, 144, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23cafc90' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.form-group select option {
    background: var(--fondo);
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--verde-lima);
    background: rgba(202, 252, 144, 0.1);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: radial-gradient(circle at bottom left, rgba(202, 252, 144, 0.05), transparent 70%);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(202, 252, 144, 0.1);
    backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 1024px) {
    .feature-content {
        gap: 40px;
    }
    
    .feature-description h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .feature-content,
    .feature-content.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .feature-header h2 {
        font-size: 32px;
    }
    
    .feature-placeholder {
        height: 300px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .feature-details-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .feature-section {
        padding: 60px 0;
    }
    
    .feature-placeholder {
        height: 250px;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-container {
        padding: 30px 20px;
    }
}

/* ===== ESTILOS PARA EL SISTEMA DE PESTAÑAS ===== */

/* Features Showcase */
.features-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--fondo), #0f1422);
}

/* Categories */
.feature-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
}

.category-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(202, 252, 144, 0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: rgba(202, 252, 144, 0.1);
    border-color: var(--verde-lima);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--verde-lima);
    color: var(--texto-oscuro);
    border-color: var(--verde-lima);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 40px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(202, 252, 144, 0.15);
    border-radius: 15px;
    padding: 20px 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.feature-btn i {
    font-size: 28px;
    color: var(--verde-lima);
    transition: all 0.3s ease;
}

.feature-btn span {
    font-size: 14px;
    font-weight: 500;
}

.feature-btn:hover {
    background: rgba(202, 252, 144, 0.1);
    border-color: var(--verde-lima);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-btn:hover i {
    transform: scale(1.1);
}

.feature-btn.active {
    background: rgba(202, 252, 144, 0.15);
    border-color: var(--verde-lima);
    border-width: 2px;
}

.feature-btn.active i {
    color: var(--verde-lima);
}

/* Feature Detail Container */
.feature-detail-container {
    margin-top: 50px;
    min-height: 600px;
    position: relative;
}

.feature-placeholder-message {
    text-align: center;
    padding: 100px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    border: 2px dashed rgba(202, 252, 144, 0.3);
}

.feature-placeholder-message i {
    font-size: 80px;
    color: var(--verde-lima);
    margin-bottom: 20px;
    opacity: 0.5;
}

.feature-placeholder-message h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 15px;
}

.feature-placeholder-message p {
    color: #aaa;
    font-size: 18px;
}

/* Feature Detail */
.feature-detail {
    display: none;
    animation: fadeIn 0.5s ease;
}

.feature-detail.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ajustes para el feature detail dentro del contenedor */
.feature-detail .feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(202, 252, 144, 0.1);
}

.feature-detail .feature-header {
    text-align: left;
    margin-bottom: 30px;
}

.feature-detail .feature-number {
    margin-bottom: 10px;
}

.feature-detail h2 {
    text-align: left;
    font-size: 36px;
    margin-bottom: 10px;
}

.feature-detail .feature-subtitle {
    text-align: left;
    margin-left: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .feature-detail .feature-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-detail h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .feature-categories {
        gap: 10px;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .feature-detail .feature-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-btn {
        padding: 15px 5px;
    }
    
    .feature-btn i {
        font-size: 24px;
    }
    
    .feature-btn span {
        font-size: 12px;
    }
}