/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Google Sans Flex", sans-serif !important;
}

/* Efectos de luz de fondo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: -300px;
    width: 960px;
    height: 100vh;
    background: radial-gradient(circle at 300px center, rgba(69, 168, 22, 0.15) 0%, rgba(69, 168, 22, 0.08) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    right: -50px;
    width: 360px;
    height: 100vh;
    background: radial-gradient(circle at -300px center, rgba(147, 51, 234, 0.15) 20%, rgba(147, 51, 234, 0.08) 60%, transparent 80%);
    pointer-events: none;
    z-index: 1;
    transform: rotate(180deg);
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: transparent;
    box-shadow: none;
    padding: 1rem 20px;
    position: relative;
    z-index: 10;
    width: 100%;
}

/* Main content */
.main {
    position: relative;
    z-index: 2;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    max-width: 100%;
    margin: 0 auto;
}

.logo img {
    height: 32px;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #333;
}

.nav-btn {
    background: transparent;
    color: #333 !important;
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    border-radius: 250px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.nav-btn:hover {
    background: #f5f5f5;
    border-color: #999;
    color: #333 !important;
}

/* Menú móvil */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background: #fff;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.mobile-menu-panel.active {
    transform: translateX(0);
}

.mobile-nav {
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.mobile-nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #45A816;
}

.mobile-nav-btn {
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 250px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.mobile-nav-btn:hover {
    background: #f5f5f5;
    border-color: #999;
    color: #333;
}

/* Main */
.main {
    padding: 0;
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
    margin-top: -100px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-title-bold {
    font-weight: 700;
}

.hero-title-regular {
    font-weight: 400;
    margin-top: -0.3rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #45A816;
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 250px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.hero-btn-arrow {
    transition: transform 0.3s ease;
}

.hero-btn:hover {
    background: #3a8f12;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(69, 168, 22, 0.3);
}

.hero-btn:hover .hero-btn-arrow {
    transform: translateX(5px);
}

.hero-icon {
    height: 50px;
    width: auto;
    vertical-align: middle;
    margin: 0 0.3em;
    display: inline-block;
    transform: rotate(35deg);
    border: solid 1px;
    border-radius: 50px;
    box-shadow: 4px 0px 1px 0px #000;
}

.hero-image-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: -2rem;
    position: relative;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    transition: opacity 0.5s ease;
    opacity: 1;
}

/* Hero Badges */
.hero-badge {
    position: absolute;
    background: white;
    color: #45A816;
    padding: 0.6rem 1.2rem;
    border-radius: 250px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    z-index: 2;
    animation: fadeInUp 0.6s ease forwards, float 3s ease-in-out infinite;
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-badge-icon {
    flex-shrink: 0;
    stroke: #45A816;
}

.hero-badge-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0.2s;
}

.hero-badge-2 {
    top: 30%;
    right: -8%;
    animation-delay: 0.4s;
}

.hero-badge-3 {
    bottom: 30%;
    left: -12%;
    animation-delay: 0.6s;
}

.hero-badge-4 {
    top: 50%;
    right: -10%;
}

.hero-badge-5 {
    top: 20%;
    left: -10%;
    animation-delay: 1s;
}

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

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

@keyframes floatCenter {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(calc(-50% - 10px));
    }
}

.hero-badge-1 {
    animation: fadeInUp 0.6s ease 0.2s forwards, float 3s ease-in-out 0.8s infinite;
}

.hero-badge-2 {
    animation: fadeInUp 0.6s ease 0.4s forwards, float 3s ease-in-out 1s infinite;
}

.hero-badge-3 {
    animation: fadeInUp 0.6s ease 0.6s forwards, float 3s ease-in-out 1.2s infinite;
}

.hero-badge-4 {
    transform: translateY(-50%);
    animation: fadeInUpCenter 0.6s ease 0.8s forwards;
}

.hero-badge-5 {
    animation: fadeInUp 0.6s ease 1s forwards;
}

@keyframes fadeInUpCenter {
    from {
        opacity: 0;
        transform: translateY(calc(-50% + 20px));
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

/* Plans Section */
.plans-section {
    background: #fff;
    position: relative;
    z-index: 10;
    padding: 4rem 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

.plans-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.plans-section-description {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Plans Grid */
.plans {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading state */
.loading-plans {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #45A816;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-plans p {
    font-size: 1.1rem;
    margin: 0;
}

/* Premium Plan Card - Nuevo diseño */
.plan {
    background: linear-gradient(145deg, #f9fafb 0%, #f3f4f6 100%);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 28px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px -10px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-color: #e5e7eb;
    background: linear-gradient(to top, rgb(69 168 22 / 34%) 0%, rgb(69 168 22 / 9%) 15%, rgb(69 168 22 / 6%) 30%, rgba(255, 255, 255, 0.05) 50%, #f9fafb 100%);
}

/* Plan Name Section */
.plan-name-section {
    text-align: center;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    gap: 4px;
}

.plan-name-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: relative;
    margin-bottom: 0;
    margin-top: 0;
    flex: 0 0 50%;
    max-width: 50%;
}

.plan-icon-image {
    width: 180px;
    height: 180px;
    min-width: 180px;
    min-height: 180px;
    max-width: 180px;
    max-height: 180px;
    position: relative;
    top: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.4s ease;
    overflow: hidden;
    margin-left: 0;
}

.plan-icon-img {
    width: 170px;
    height: 170px;
    min-width: 170px;
    min-height: 170px;
    max-width: 170px;
    max-height: 170px;
    object-fit: contain;
    object-position: left center;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
    margin-left: 0;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-icon-img.visible {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.plan-icon-img.hidden {
    opacity: 0;
    transform: translateY(-50%) scale(0.95);
    pointer-events: none;
}

.plan-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    letter-spacing: -0.01em;
    text-align: left;
    width: 100%;
    white-space: nowrap;
}

.plan-additional-features {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.plan-feature-item {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.plan-description {
    color: #6b7280;
    font-size: 13px;
    margin: 0;
    font-weight: 400;
    white-space: nowrap;
}

.plan-description-with-separator {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    width: 60%;
    line-height: 1.2rem;
    width: 100%;
    max-width: 100%;
    text-align: left;
}

/* Plan Divider */
.plan-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
    margin: 20px 0;
}

/* Timbres Hero Box */
.timbres-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border: 2px dashed #e5e7eb;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    gap: 12px;
}

.plan:hover .timbres-hero {
    border-color: #45A816;
    background: #f9fafb;
}

.timbres-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #45A816 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timbres-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

/* Price Section */
.plan-price {
    text-align: center;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-currency {
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    margin-left: 6px;
}

.plan-unit-price {
    padding: 6px 12px;
    background: #ffffff;
    border-radius: 16px;
    display: inline-block;
    margin-top: 8px;
    color: #6b7280;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Plan Features */
.plan-features {
    text-align: center;
    margin-bottom: 20px;
    padding: 0;
}

.feature {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Plan Button */
.plan-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #45A816 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 250px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    text-decoration: none;
}

.plan-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.plan-btn:hover::before {
    left: 100%;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(69, 168, 22, 0.3);
}

.plan-btn:active {
    transform: translateY(0);
}


/* Timbres Packages Section */
.timbres-packages-section {
    padding: 4rem 0;
    background: transparent;
}

.timbres-packages-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
}

.timbres-packages-description {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

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

.timbres-packages-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timbres-packages-table thead {
    background: #45A816;
    color: white;
}

.timbres-packages-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.timbres-packages-table tbody tr {
    border-bottom: 1px solid #e5e5e5;
    transition: background-color 0.2s ease;
}

.timbres-packages-table tbody tr:hover {
    background-color: #f5f5f5;
}

.timbres-packages-table tbody tr:last-child {
    border-bottom: none;
}

.timbres-packages-table td {
    padding: 1rem;
    color: #333;
    font-size: 0.95rem;
}

.timbres-packages-table td:first-child {
    font-weight: 600;
    color: #333;
}

.timbres-packages-table td:nth-child(2) {
    color: #059669;
    font-weight: 600;
}

.discount-badge {
    display: inline-block;
    background: #d1fae5;
    color: #059669;
    border: 2px solid #059669;
    padding: 0.4rem 0.8rem;
    border-radius: 250px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.timbres-packages-table td:nth-child(3) {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}

.timbres-packages-table td:nth-child(4) {
    color: #666;
}

/* CTA */
.cta {
    text-align: center;
    margin-bottom: 0;
    background: #fff;
    position: relative;
    z-index: 10;
    padding: 4rem 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.cta-description {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.cta-image {
    margin: 2rem 0;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.browser-frame {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.browser-frame:hover {
    transform: scale(1.02);
}

.cta-btn {
    display: inline-block;
    background: #45A816;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 250px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
    margin: 0 20px;
}

.cta-btn:hover {
    background: #3a8f12;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(69, 168, 22, 0.3);
}

/* Multi Razón Section */
.multi-razon {
    text-align: center;
    margin: 0;
    padding: 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    z-index: 10;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

.multi-razon-title {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.multi-razon-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 1rem;
    line-height: 1.6;
    padding: 0 20px 2rem 20px;
}

.multi-razon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 1rem auto 0;
    padding: 0 20px;
    align-items: center;
    box-sizing: border-box;
}

.multi-razon-video {
    width: 100%;
    margin-top: -120px;
}

.video-player {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.multi-razon-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 0;
}

.multi-razon-img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand img {
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1.1rem;
    color: #ccc;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #45A816;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: #45A816;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

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

@media (max-width: 768px) {
    /* Header móvil */
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Footer móvil */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
    }
    
    .footer-brand {
        text-align: left;
    }
    
    .footer-section {
        text-align: left;
    }
    
    /* Plans móvil */
    .plans {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Hero móvil */
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-badge {
        display: none;
    }
    
    .timbres-packages-section {
        padding: 2rem 0;
    }
    
    .timbres-packages-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .timbres-packages-container {
        padding: 0 10px;
    }
    
    .timbres-packages-table {
        font-size: 0.85rem;
    }
    
    .timbres-packages-table th,
    .timbres-packages-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .timbres-packages-table th {
        font-size: 0.9rem;
    }
    
    .custom-page {
        margin: 2rem 1rem;
        padding: 2rem 1rem;
    }
    
    .custom-page-title {
        font-size: 1.5rem;
    }
    
    .custom-page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 2px 2px 8px #999;
    color: white;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

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

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 6rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    /* Multi Razón móvil */
    .multi-razon {
        padding: 20px;
    }
    
    .multi-razon-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .multi-razon-video {
        margin-top: -40px;
        order: 1;
    }
    
    .multi-razon-image {
        order: 2;
    }
    
    .plans {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav {
        display: none;
    }
    
    .nav-btn {
        display: block;
        margin: 1rem auto;
        width: fit-content;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* Plan Features Button */
.plan-features-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    color: #45A816;
    border: 2px solid #45A816;
    border-radius: 250px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.plan-features-btn:hover {
    background: #45A816;
    color: white;
    transform: translateY(-2px);
}

/* Plan Modal */
.plan-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.plan-modal-content {
    background-color: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-body {
    padding: 1.5rem;
}

.modal-plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #45A816;
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-feature-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 1rem;
}

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

.modal-feature-item strong {
    color: #333;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.modal-feature-desc {
    color: #666;
    font-size: 0.9rem;
    margin: 0.5rem 0 0 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .plan-modal-content {
        max-width: 95%;
        margin: 10px;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-plan-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .plan {
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}

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

.plan {
    animation: fadeInUp 0.6s ease-out;
}

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