/* Variables y Reset */
:root {
    --chat-green: #25D366;
    --chat-dark: #075E54;
    --chat-light: #DCF8C6;
    --font-primary: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header y Navegación */
header {
    background-color: var(--chat-dark);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilos del logo */
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-svg {
    width: 40px;
    height: 40px;
}

.logo-svg .antenas {
    animation: float 2s ease-in-out infinite;
    transform-origin: center bottom;
}

.logo-svg .ojos {
    animation: blink 4s infinite;
    transform-origin: center;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes blink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--chat-light);
}

/* Sección Hero */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(rgba(7, 94, 84, 0.9), rgba(37, 211, 102, 0.8));
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    color: white;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    animation: fadeInUp 1s ease;
}

.hero-content .highlight {
    color: var(--chat-light);
    display: block;
    margin-top: 0.5rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-content .bold {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 2rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    animation: fadeInUp 1s ease 0.2s backwards;
}

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

/* Sección de Planes */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 2.5rem;
    color: var(--chat-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.pricing-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--chat-green);
    border-radius: 2px;
}

.features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    width: 20px;
    color: var(--chat-green);
    font-size: 1.1rem;
}

.feature-item span {
    flex: 1;
    color: #666;
    font-size: 0.9rem;
}

.feature-item strong {
    color: var(--chat-dark);
    font-weight: 600;
}

.pricing-cta {
    width: 100%;
    padding: 1rem;
    background: var(--chat-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.pricing-cta:hover {
    background: var(--chat-dark);
    transform: translateY(-3px);
}

/* Ajustes responsive para planes */
@media (max-width: 1024px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-header h3 {
        font-size: 2rem;
    }
}

/* Sección de Precios */
.pricing-section {
    padding: 5rem 2rem;
    background: linear-gradient(rgba(7, 94, 84, 0.02), rgba(37, 211, 102, 0.02));
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.price {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    flex-wrap: wrap;
    color: var(--chat-dark);
    margin: 1.5rem 0;
}

.currency {
    font-size: 0.5em;
    font-weight: 500;
    margin-right: 0.2rem;
}

.price span:last-child {
    font-size: 0.4em;
    color: #666;
    margin-left: 0.2rem;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-top: 0.5rem;
}

.pricing-card:hover .price-note {
    transform: scale(1.05);
}

.text-success {
    color: var(--chat-green);
}

.text-danger {
    color: #ff4444;
}

/* Botón flotante de WhatsApp */
.chat-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-float a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--chat-green);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.chat-float a:hover {
    transform: scale(1.1);
    background-color: #1a9247;
}

.chat-float i {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .chat-float {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-float a {
        width: 50px;
        height: 50px;
    }
    
    .chat-float i {
        font-size: 1.7rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .price {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    
    .price span {
        font-size: 36px;
    }
    
    .chat-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1rem;
        right: 1rem;
    }
}

.chat-animation {
    flex: 1;
    max-width: 350px;
    margin: 2rem;
    opacity: 0;
}

.chat-animation.left {
    animation: slideInLeft 1s ease forwards;
}

.chat-animation.right {
    animation: slideInRight 1s ease forwards;
}

.chat-animation.right .chat-message.received {
    animation-delay: 0.8s;
}

.chat-animation.right .chat-message.sent {
    animation-delay: 2.3s;
}

.chat-animation.right .chat-message:last-child {
    animation-delay: 3.8s;
}

.chat-container {
    background: #E5DDD5;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: var(--chat-dark);
    padding: 0.8rem 1rem;
    padding-top: 2.5rem;
}

.chat-status {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 0.8rem;
    padding: 0.2rem 0;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.profile-pic {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #128C7E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.title-info {
    flex: 1;
}

.title-info div:first-child {
    font-weight: bold;
    color: white;
}

.online-status {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background-color: #E5DDD5;
    display: flex;
    flex-direction: column;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.chat-messages::-webkit-scrollbar {
    display: none;
}

.message {
    opacity: 0;
    transform: translateY(2px);
    transition: all 0.2s ease-out;
    margin: 0.3rem 0;
    max-width: 85%;
    position: relative;
}

.message.show {
    opacity: 1;
    transform: translateY(0);
}

.message:first-child {
    opacity: 1;
    transform: none;
}

.message.sent {
    align-self: flex-end;
    margin-left: auto;
}

.message.received {
    align-self: flex-start;
}

.message-content {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    will-change: transform, opacity;
}

.sent .message-content {
    background-color: #DCF8C6;
    color: #303030;
}

.received .message-content {
    background-color: white;
    color: #303030;
}

.message-time {
    font-size: 0.7rem;
    color: #8696a0;
    margin-top: 0.2rem;
    margin-left: 0.5rem;
}

.chat-input {
    padding: 0.8rem;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.chat-input input {
    flex: 1;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 20px;
    background: white;
    font-size: 0.9rem;
}

.chat-input button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--chat-green);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.iphone-frame {
    background: #1f1f1f;
    border-radius: 45px;
    padding: 8px;
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    width: 300px;
    margin: 2rem auto;
    border: none;
}

.iphone-frame::after {
    display: none;
}

.iphone-notch {
    position: absolute;
    width: 150px;
    height: 25px;
    background: #1f1f1f;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 2;
}

.iphone-frame::before {
    content: '';
    position: absolute;
    width: 35%;
    height: 25px;
    background: #1f1f1f;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 3;
}

.chat-message {
    margin: 1rem 0;
    opacity: 0;
    transform: translateY(20px);
}

.chat-message.received {
    animation: messageIn 0.5s ease forwards;
}

.chat-message.sent {
    animation: messageIn 0.5s ease forwards 1.5s;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chat-message:last-child {
    animation-delay: 3s;
}

.message-content {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    max-width: 80%;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.4;
}

.received .message-content {
    background-color: white;
    color: #333;
}

.sent .message-content {
    background-color: #DCF8C6;
    color: #333;
}

.message-time {
    font-size: 0.7rem;
    color: #999;
    margin-top: 0.2rem;
    margin-right: 0.5rem;
}

.chat-link {
    color: var(--chat-dark);
    text-decoration: none;
    font-weight: bold;
}

.chat-link:hover {
    text-decoration: underline;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--chat-light);
    font-weight: bold;
}

.bold {
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: var(--chat-green);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--chat-dark);
    transform: scale(1.05);
}

.services {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.featured {
    border: 3px solid var(--chat-green);
    transform: scale(1.05);
}

.plan-badge {
    background-color: var(--chat-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--chat-dark);
    margin: 1.5rem 0;
}

.price span {
    font-size: 1rem;
    color: #666;
}

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

.features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.plan-button {
    background-color: var(--chat-green);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background-color: var(--chat-dark);
}

.contact {
    padding: 5rem 2rem;
    background: linear-gradient(rgba(7, 94, 84, 0.02), rgba(37, 211, 102, 0.02));
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--chat-green);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--chat-dark);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #666;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--chat-green);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--chat-green);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    overflow: hidden;
    position: relative;
}

.contact-form .submit-btn:hover {
    background: var(--chat-dark);
    transform: translateY(-2px);
}

.contact-form .submit-btn:active {
    transform: translateY(0);
}

.contact-form .submit-btn i {
    transition: transform 0.3s ease;
}

.contact-form .submit-btn:hover i {
    transform: translateX(5px);
}

/* Efecto de onda al hacer click */
.contact-form .submit-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform .5s, opacity 1s;
}

.contact-form .submit-btn:active::after {
    transform: scale(0, 0);
    opacity: .3;
    transition: 0s;
}

/* Animación de carga */
@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.contact-form .submit-btn .fa-spinner {
    animation: rotate 1s linear infinite;
}

/* Estado de éxito */
.contact-form.success {
    animation: successPulse 1.5s ease;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Mejoras en los campos del formulario */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
    transition: all 0.3s ease;
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
    opacity: 0.7;
    transform: translateX(10px);
}

/* Animación de entrada de campos */
.contact-form .form-group input,
.contact-form textarea {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

.contact-form .form-group input:nth-child(1) { animation-delay: 0.1s; }
.contact-form .form-group input:nth-child(2) { animation-delay: 0.2s; }
.contact-form input[type="text"] { animation-delay: 0.3s; }
.contact-form textarea { animation-delay: 0.4s; }
.contact-form .submit-btn { animation-delay: 0.5s; }

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

/* Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }

    .contact-form .form-group {
        flex-direction: column;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem 1rem;
    }

    .contact-form .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

footer {
    background-color: var(--chat-dark);
    color: white;
    text-align: center;
    padding: 1rem;
}

@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        padding-top: 5rem;
        height: auto;
        min-height: 100vh;
    }

    .chat-animation {
        max-width: 100%;
        margin: 1rem;
    }

    .hero-content {
        padding: 2rem 1rem;
        order: -1;
    }

    .chat-animation.right {
        margin-top: -2rem;
    }
}

.features-section {
    padding: 5rem 2rem;
    background-color: var(--chat-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--chat-green);
    margin-bottom: 1rem;
}

.benefits-section {
    padding: 5rem 2rem;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    margin: 4rem 0;
    gap: 2rem;
}

.benefit-item.reverse {
    flex-direction: row-reverse;
}

.benefit-content {
    flex: 1;
    padding: 2rem;
}

.benefit-content h3 {
    color: var(--chat-dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.benefit-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefit-item img {
    flex: 1;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.benefit-image {
    flex: 1;
    max-width: 500px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--chat-light);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.benefit-image i {
    font-size: 5rem;
    color: var(--chat-green);
    z-index: 2;
    transition: transform 0.3s ease;
}

.benefit-image:hover i {
    transform: scale(1.1);
}

.benefit-icon-bg {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, rgba(255,255,255,0) 70%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.faq-section {
    padding: 5rem 2rem;
    background-color: var(--chat-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin: 1rem 0;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: var(--chat-dark);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .benefit-item {
        flex-direction: column;
    }
    
    .benefit-item.reverse {
        flex-direction: column;
    }
    
    .benefit-item img {
        width: 100%;
    }
    
    .benefit-image {
        height: 200px;
    }
    
    .benefit-image i {
        font-size: 3.5rem;
    }
}

.industries-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.industries-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.industries-left h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.industry-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.industry-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: none;
    background: none;
    color: #666;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-align: left;
}

.industry-btn i {
    font-size: 1.2rem;
    width: 24px;
}

.industry-btn:hover, .industry-btn.active {
    background-color: var(--chat-green);
    color: white;
}

.industries-right {
    padding: 1rem;
    transition: all 0.5s ease;
}

.industries-right h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.industries-right p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
    opacity: 0;
    transform: translateY(10px);
    animation: featureSlideIn 0.3s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

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

.quick-actions {
    margin: 1rem 0;
}

.quick-actions button {
    width: 100%;
    padding: 1rem;
    margin: 0.3rem 0;
    border: none;
    border-radius: 8px;
    background: white;
    color: var(--chat-dark);
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quick-actions button:hover {
    background-color: #f5f5f5;
}

@media (max-width: 1200px) {
    .industries-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .industries-left, .industries-right {
        max-width: 600px;
        margin: 0 auto;
    }

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

.travel-options, .product-showcase, .medical-options {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.package-option, .product-card {
    background-color: white;
    padding: 0.8rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-option:hover, .product-card:hover {
    transform: translateX(5px);
    background-color: #f5f5f5;
}

.product-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.price {
    color: var(--chat-dark);
    font-weight: bold;
}

.view-btn {
    background-color: var(--chat-green);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.9rem;
}

.specialty-btn {
    background-color: white;
    border: 1px solid var(--chat-green);
    color: var(--chat-dark);
    padding: 0.8rem;
    border-radius: 8px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.specialty-btn:hover {
    background-color: var(--chat-green);
    color: white;
}

.medical-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .medical-options {
        grid-template-columns: 1fr;
    }
    
    .package-option, .product-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

.iphone-frame {
    background: #1f1f1f;
    border-radius: 45px;
    padding: 8px;
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    width: 300px;
    margin: 2rem auto;
    border: none;
}

.iphone-notch {
    position: absolute;
    width: 150px;
    height: 25px;
    background: #1f1f1f;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 2;
}

.iphone-frame::before {
    content: '';
    position: absolute;
    width: 35%;
    height: 25px;
    background: #1f1f1f;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 3;
}

.iphone-frame::after {
    display: none;
}

.chat-container {
    background: #E5DDD5;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: var(--chat-dark);
    padding: 0.8rem 1rem;
    padding-top: 2.5rem;
}

.chat-status {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 0.8rem;
    padding: 0.2rem 0;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.profile-pic {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #128C7E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background-color: #E5DDD5;
}

.chat-input {
    padding: 0.8rem;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.chat-input input {
    flex: 1;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 20px;
    background: white;
    font-size: 0.9rem;
}

.chat-input button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--chat-green);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.typing-indicator {
    display: flex;
    gap: 0.3rem;
    padding: 1rem;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 2s;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
    animation: bounce 1s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

.message {
    opacity: 0;
    animation: messageSlide 0.3s ease forwards;
}

.message:nth-child(1) { animation-delay: 0.5s; }
.message:nth-child(2) { animation-delay: 1s; }
.message:nth-child(3) { animation-delay: 1.5s; }
.message:nth-child(4) { animation-delay: 2.5s; }

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

/* Ajustes responsive */
@media (max-width: 768px) {
    .iphone-frame {
        max-width: 100%;
    }
    
    .chat-messages {
        height: 350px;
    }
}

/* Sección Cómo Funciona */
.how-it-works {
    padding: 5rem 2rem;
    background: linear-gradient(rgba(7, 94, 84, 0.02), rgba(37, 211, 102, 0.02));
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--chat-light);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2rem;
    color: var(--chat-dark);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--chat-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Sección Por Qué Elegirnos */
.why-us-section {
    padding: 5rem 2rem;
    background: white;
}

.why-us-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-10px);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    background: var(--chat-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-us-icon i {
    font-size: 2rem;
    color: var(--chat-dark);
}

/* Sección Tecnologías */
.technologies-section {
    padding: 5rem 2rem;
    background: var(--chat-light);
}

.technologies-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
}

.tech-icon {
    font-size: 3rem;
    color: var(--chat-green);
    margin-bottom: 1rem;
}

.tech-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.tech-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    color: #666;
}

.tech-features li i {
    color: var(--chat-green);
}

/* Sección Testimonios */
.testimonials-section {
    padding: 5rem 2rem;
    background: white;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-avatar {
    font-size: 3rem;
    color: var(--chat-dark);
    margin-bottom: 1rem;
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

/* Sección Casos de Éxito */
.case-studies-section {
    padding: 5rem 2rem;
    background: linear-gradient(rgba(7, 94, 84, 0.02), rgba(37, 211, 102, 0.02));
}

.cases-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.case-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--chat-green), var(--chat-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.case-card:hover::before {
    opacity: 1;
}

.case-header {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.case-header i {
    font-size: 2.8rem;
    color: var(--chat-green);
    background: var(--chat-light);
    padding: 1.2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.case-card:hover .case-header i {
    transform: scale(1.1);
}

.case-header h3 {
    font-size: 2rem;
    color: var(--chat-dark);
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(220, 248, 198, 0.3);
    border-radius: 15px;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2.5rem;
    color: var(--chat-green);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

.case-description {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-weight: 400;
}

/* Ajustes responsive */
@media (max-width: 1024px) {
    .cases-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cases-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .case-card {
        padding: 2rem;
    }

    .case-header h3 {
        font-size: 1.5rem;
    }

    .stat h4 {
        font-size: 1.8rem;
    }
}

/* Centro de Recursos */
.resources-section {
    padding: 5rem 2rem;
    background: linear-gradient(rgba(7, 94, 84, 0.02), rgba(37, 211, 102, 0.02));
}

.resources-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-10px);
}

.resource-content {
    padding: 2rem;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--chat-light);
    color: var(--chat-dark);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.resource-content h3 {
    color: var(--chat-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.resource-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: var(--chat-green);
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--chat-dark);
}

/* Sección de Integraciones */
.integrations-section {
    padding: 5rem 2rem;
    background: white;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Fuerza 6 columnas en una fila */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.integration-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.integration-item:hover {
    transform: translateY(-10px);
    background: var(--chat-light);
}

.integration-item i {
    font-size: 3rem;
    color: var(--chat-dark);
    margin-bottom: 1rem;
}

.integration-item h4 {
    color: #333;
    font-size: 1.2rem;
}

/* Ajustes responsive */
@media (max-width: 768px) {
    .resources-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columnas en móvil */
        gap: 1rem;
    }
    
    .integration-item {
        padding: 1.5rem;
    }
    
    .integration-item i {
        font-size: 2.5rem;
    }
}

/* Sección de Analíticas */
.analytics-section {
    padding: 5rem 2rem;
    background: white;
}

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

.analytics-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--chat-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--chat-dark);
}

.stat-info h3 {
    font-size: 2rem;
    color: var(--chat-dark);
    margin-bottom: 0.5rem;
}

.stat-info p {
    color: #666;
    font-size: 0.9rem;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.stat-trend.up {
    color: #25D366;
}

.stat-trend.down {
    color: #ff4444;
}

/* Gráficos y Detalles */
.analytics-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.chart-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.chart-card h3 {
    color: var(--chat-dark);
    margin-bottom: 2rem;
}

.chart-container {
    height: 300px;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    padding: 1rem 0;
}

.chart-bar {
    flex: 1;
    background: var(--chat-green);
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: height 0.3s ease;
    min-height: 30px;
}

.chart-bar:hover {
    background: var(--chat-dark);
}

.chart-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: #666;
}

.topics-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.topic-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.topic-info {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
}

.topic-bar {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.topic-bar .progress {
    height: 100%;
    background: var(--chat-green);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Ajustes responsive */
@media (max-width: 768px) {
    .analytics-overview {
        grid-template-columns: 1fr;
    }
    
    .analytics-details {
        grid-template-columns: 1fr;
    }
    
    .chart-container {
        height: 200px;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-info h3 {
        font-size: 1.8rem;
    }
}

/* Estilos generales para títulos de sección */
section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--chat-dark);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

/* Línea decorativa debajo de los títulos */
section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--chat-green);
    border-radius: 2px;
}

/* Ajuste responsive para títulos */
@media (max-width: 768px) {
    section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Sección CTA Final */
.final-cta-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--chat-dark) 0%, var(--chat-green) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%23FFFFFF" opacity="0.1" d="M45.4,-77.8C58.9,-69.5,69.7,-56.4,77.7,-41.9C85.7,-27.4,90.8,-11.4,89.8,4.1C88.7,19.6,81.4,34.7,71.3,47.2C61.2,59.7,48.2,69.6,33.5,75.5C18.8,81.4,2.4,83.3,-14.2,81.1C-30.8,79,-47.6,72.7,-62.8,62.1C-77.9,51.4,-91.4,36.3,-95.9,19.1C-100.4,1.9,-95.9,-17.4,-87.8,-34.4C-79.7,-51.4,-67.9,-66,-53.1,-74.4C-38.3,-82.8,-20.5,-85,0.2,-85.3C20.8,-85.6,31.9,-86.1,45.4,-77.8Z" transform="translate(100 100)"/></svg>') center/cover;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.final-cta-section h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.final-cta-section h2::after {
    background: white;
}

.final-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.final-cta-section .cta-button {
    background: white;
    color: var(--chat-dark);
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.final-cta-section .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--chat-light);
}

/* Ajustes responsive */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 5rem 1.5rem;
    }

    .final-cta-section h2 {
        font-size: 2.5rem;
    }

    .final-cta-section p {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .final-cta-section .cta-button {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

/* Scroll suave para todos los enlaces internos */
html {
    scroll-behavior: smooth;
}

/* Menú Hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Clase para cuando el menú está activo */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
    }

    .menu-toggle span {
        width: 100%;
        height: 3px;
        background-color: white;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--chat-dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.2s;
    }
}

.mp-button {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    width: 100%;
    transition: all 0.3s ease;
}

.mp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Asegurarnos que el botón de MP mantenga el estilo del CTA */
.pricing-cta.mp-button {
    width: 100%;
    padding: 1rem;
    background: var(--chat-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.pricing-cta.mp-button:hover {
    background: var(--chat-dark);
    transform: translateY(-3px);
}

/* Sección de Comparativa */
.comparison-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(7, 94, 84, 0.05), rgba(37, 211, 102, 0.05));
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
    animation: rotate 30s linear infinite;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    padding: 1.5rem;
    text-align: center;
    background: var(--chat-dark);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.comparison-table th:first-child {
    text-align: left;
    border-top-left-radius: 15px;
}

.comparison-table th:last-child {
    border-top-right-radius: 15px;
    background: var(--chat-green);
}

.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--chat-dark);
    padding-left: 2rem;
}

.comparison-table td:last-child {
    background: rgba(37, 211, 102, 0.03);
    font-weight: 600;
}

.comparison-table tr:hover td {
    background-color: rgba(37, 211, 102, 0.05);
}

.comparison-table tr:hover td:last-child {
    background-color: rgba(37, 211, 102, 0.1);
}

/* Estilos para los emojis */
.comparison-table td:not(:first-child) {
    font-size: 1.4rem;
    line-height: 1;
}

/* Tooltips para información adicional */
.comparison-table td[data-tooltip] {
    position: relative;
    cursor: help;
}

.comparison-table td[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--chat-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.comparison-table td[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 10px);
}

/* Estilos específicos para positivo/negativo */
.comparison-table .positive {
    color: var(--chat-green);
    font-weight: bold;
}

.comparison-table .negative {
    color: #757575;
}

/* Animación de entrada */
.comparison-table tr {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

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

.comparison-table tr:nth-child(2) { animation-delay: 0.1s; }
.comparison-table tr:nth-child(3) { animation-delay: 0.2s; }
.comparison-table tr:nth-child(4) { animation-delay: 0.3s; }
/* ... y así sucesivamente */

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Ajustes para casos de éxito y otras secciones */
@media (max-width: 768px) {
    .success-cases {
        padding: 2rem 1rem;
        overflow: hidden;
    }

    .success-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0;
    }

    .success-card {
        margin: 0;
        width: 100%;
    }

    /* Ajuste general de paddings para móvil */
    section {
        padding: 3rem 1rem;
    }

    /* Ajuste de márgenes y paddings */
    .container, 
    .grid-container, 
    .features-grid,
    .benefits-container {
        padding: 0;
        margin: 1rem;
    }

    /* Mejora del espaciado vertical */
    h2 {
        margin-bottom: 2rem;
    }

    /* Ajuste de tamaños de texto */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
    p { font-size: 1rem; }
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    /* Ajustes para la sección de precios */
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 2rem;
    }

    .pricing-card {
        width: 100%;
        margin: 0;
        padding: 1.5rem;
    }

    .pricing-header {
        padding: 1rem;
    }

    .price {
        font-size: 2.5rem;
    }

    /* Ajustes para la sección de tecnologías */
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
    }

    .tech-card {
        padding: 1rem;
        min-height: auto;
    }

    /* Ajustes para integraciones disponibles */
    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 1rem;
        margin: 1rem;
    }

    .integration-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .integration-item img {
        width: 40px;
        height: 40px;
    }

    /* Ajustes para casos de éxito */
    .success-cases {
        padding: 2rem 1rem;
    }

    .success-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .success-card {
        width: 100%;
        margin: 0;
        padding: 1.5rem;
    }

    .success-content {
        padding: 1rem;
    }

    /* Ajustes generales de contenedores */
    .container {
        padding: 1rem;
        margin: 0;
        width: 100%;
        overflow-x: hidden;
    }

    section {
        padding: 3rem 1rem;
        overflow: hidden;
    }

    /* Ajustes para tablas y contenido scrolleable */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -1rem;
        padding: 0 1rem;
    }

    /* Mejoras en la legibilidad */
    .feature-item span {
        font-size: 0.9rem;
    }

    .feature-item strong {
        font-size: 0.9rem;
    }

    /* Evitar desbordamiento de texto */
    h1, h2, h3, p {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }

    /* Ajuste de márgenes y paddings */
    .grid-container, 
    .features-grid,
    .benefits-container {
        margin: 0;
        padding: 1rem;
    }

    /* Mejorar espaciado vertical */
    .section-title {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    /* Ajustar tamaño de iconos */
    .icon-container {
        width: 50px;
        height: 50px;
    }

    /* Mejorar visualización de cards */
    .card {
        margin: 0.5rem 0;
        width: 100%;
    }
}

/* Ajustes específicos para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem;
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .integrations-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .success-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} 