:root {
    --primary-color: #30c1c6;
    --primary-dark: #249a9e;
    --primary-light: #5bd0d4;
    --primary-extra-light: #e0f7f8;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --border-radius: 10px;
    --gradient: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-dark)
    );
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
    margin-right: 12px;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

header.scrolled .logo-image {
    height: 35px;
    filter: none;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

header.scrolled .logo-text {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

header.scrolled .nav-links a {
    color: var(--dark-color);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(48, 193, 198, 0.3);
}

.cta-button::after {
    display: none;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(48, 193, 198, 0.5);
    border-color: var(--white);
}

header.scrolled .cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

header.scrolled .cta-button {
    background-color: var(--primary-color);
    color: var(--white);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--white);
    z-index: 1001;
}

header.scrolled .menu-toggle {
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background: linear-gradient(135deg, #68d7f3, #045e5e, var(--primary-dark));
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 10;
    position: relative;
}

.hero h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.btn {
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(48, 193, 198, 0.3);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(48, 193, 198, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Animación de partículas */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    animation: float 15s infinite linear;
    user-select: none;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
    }
}

/* Secciones */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title p {
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Características */
.features {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient);
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    color: var(--white);
}

.feature-card:hover h3,
.feature-card:hover p {
    color: var(--white);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(48, 193, 198, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Funcionalidades */
.functionality {
    background-color: var(--light-color);
}

.functionality-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 12px 25px;
    background-color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark-color);
    box-shadow: var(--shadow);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.tab-btn:hover:not(.active) {
    background-color: var(--primary-extra-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.functionality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.functionality-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.functionality-text p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.functionality-list {
    list-style: none;
}

.functionality-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.functionality-list i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.functionality-image {
    text-align: center;
}

.functionality-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Testimonios */
.testimonials {
    background-color: var(--white);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    min-width: 100%;
    position: relative;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--gray-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-section .btn:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col p {
    margin-bottom: 20px;
    color: #aaa;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 0.9rem;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .functionality-content {
        grid-template-columns: 1fr;
    }

    .functionality-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 100px;
        transition: var(--transition);
        backdrop-filter: blur(10px);
        z-index: 999;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        color: var(--dark-color);
        font-size: 1.2rem;
        display: block;
        padding: 10px 0;
        width: 100%;
    }

    .nav-links .cta-button {
        margin-top: 20px;
        color: var(--white);
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 250px;
        text-align: center;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .functionality-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .functionality-image {
        order: -1;
    }

    .functionality-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    section {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Specific Styles */
.contact-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background: linear-gradient(135deg, #68d7f3, #045e5e, var(--primary-dark));
    margin-bottom: 0;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.contact-hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 10;
    position: relative;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.contact-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 1.8rem;
    text-align: center;
}

.info-items {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.info-item:hover {
    background-color: var(--primary-extra-light);
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-extra-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.info-content p {
    color: var(--gray-color);
    line-height: 1.6;
}

.benefits-list {
    margin-top: 30px;
    background: var(--primary-extra-light);
    padding: 30px;
    border-radius: var(--border-radius);
}

.benefits-list h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
    text-align: center;
    font-size: 1.4rem;
}

.benefits-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
}

.benefits-list i {
    color: var(--primary-color);
    margin-right: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-form {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 1.8rem;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: "Poppins", sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(48, 193, 198, 0.2);
}

.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    background-color: var(--white);
    transition: var(--transition);
    font-family: "Poppins", sans-serif;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(48, 193, 198, 0.2);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 16px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    box-shadow: 0 5px 15px rgba(48, 193, 198, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(48, 193, 198, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.success-message {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 25px;
    text-align: center;
    border-left: 4px solid #28a745;
}

.success-message i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px;
    background-color: var(--primary-extra-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(48, 193, 198, 0.15);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Responsive para Contacto */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-info,
    .contact-form {
        padding: 30px 25px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .contact-info,
    .contact-form {
        padding: 25px 20px;
    }
}

/* Sección de Precios - Versión Simplificada */
.pricing {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 40px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(48, 193, 198, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--primary-extra-light);
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 5px;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
}

.decimal {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);
}

.period {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-left: 10px;
}

.price-description {
    color: var(--gray-color);
    font-size: 1.1rem;
}

/* Pricing Highlights - 3 columnas */
.pricing-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    padding: 40px;
    background: var(--primary-extra-light);
    border-radius: var(--border-radius);
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    font-weight: 500;
    color: var(--dark-color);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 8px;
}

.highlight-item span {
    font-size: 0.95rem;
    line-height: 1.4;
}

.pricing-cta {
    text-align: center;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.guarantee {
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card {
        padding: 30px 25px;
        margin: 0 15px;
    }

    .pricing-badge {
        top: 15px;
        right: -35px;
        font-size: 0.8rem;
        padding: 6px 35px;
    }

    .amount {
        font-size: 3rem;
    }

    .decimal {
        font-size: 1.5rem;
    }

    .pricing-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .pricing {
        padding: 70px 0;
    }

    .price {
        flex-wrap: wrap;
    }

    .amount {
        font-size: 2.5rem;
    }

    .pricing-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px 20px;
    }

    .highlight-item i {
        font-size: 1.8rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
    position: relative;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: #20bd5a;
}

.whatsapp-link i {
    font-size: 28px;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    top: 50%;
    right: 75px;
    transform: translateY(-50%);
    background: var(--dark-color);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--dark-color);
}

.whatsapp-float:hover .whatsapp-tooltip {
     right: 80px;
}

/* Pulse Animation */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* WhatsApp Button States */
.whatsapp-link:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-link {
        width: 55px;
        height: 55px;
    }

    .whatsapp-link i {
        font-size: 24px;
    }

    .whatsapp-tooltip {
        display: none; /* Ocultar tooltip en móviles */
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-link {
        width: 50px;
        height: 50px;
    }

    .whatsapp-link i {
        font-size: 22px;
    }
}

/* Para evitar superposición con otros elementos */
@media (max-width: 400px) {
    .whatsapp-float {
        bottom: 70px; /* Para no superponer con menú móvil */
    }
}
