/* ========================================
   TEMA WITUP! OVS LANDING
   Colores EXCLUSIVOS del PDF de Witup!®
   ======================================== */

:root {
    --witup-orange: #FB8C00;        /* Naranja principal - CTAs, botones */
    --witup-white: #FFFFFF;           /* Blanco - fondos principales */
    --witup-gray-dark: #1F2937;       /* Gris oscuro - textos principales */
    --witup-gray-medium: #6B7280;     /* Gris medio - textos secundarios */
    --witup-gray-light: #F5F5F5;      /* Gris claro - fondos de secciones */
    --witup-border: #E5E7EB;          /* Gris borde - separadores */
    --witup-blue: #1E3A8A;           /* Azul corporativo - acentos, detalles */
}

/* ===== RESET Y BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--witup-gray-dark);
    background-color: var(--witup-white);
    line-height: 1.6;
}

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

/* ===== UTILIDADES ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--witup-gray-dark);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--witup-orange);
}

/* ===== HEADER PROFESIONAL ===== */
.site-header {
    background-color: var(--witup-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--witup-gray-light);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.site-branding .custom-logo {
    max-height: 50px;
    width: auto;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.site-title a {
    color: var(--witup-gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-title a:hover {
    color: var(--witup-orange);
}

.main-navigation {
    display: flex;
    align-items: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    position: relative;
}

.primary-menu a {
    color: var(--witup-gray-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.primary-menu a:hover {
    color: var(--witup-orange);
}

.primary-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--witup-orange);
    transition: width 0.3s ease;
}

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

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--witup-blue) 0%, #111827 100%);
    color: var(--witup-white);
    padding: 60px 0 80px;
    margin-top: 80px;
}

.hero-logo{
    filter: brightness(0) invert(1);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--witup-orange);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--witup-gray-light);
}

.hero-features-list {
    list-style: none;
    padding: 0;
}

.hero-features-list li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.hero-features-list li::before {
    content: "✓";
    color: var(--witup-orange);
    font-weight: bold;
    margin-right: 10px;
}

.hero-image img {
    max-width: 600px;
    max-height: 600px;
    width: 100%;
    height: auto;
}

/* ===== FORMULARIO HERO (CLÁSICO) ===== */
.hero-form {
    background: var(--witup-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-top: 5px solid var(--witup-orange);
}

.hero-form h3 {
    color: var(--witup-gray-dark);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.hero-form p {
    color: var(--witup-gray-medium);
    margin-bottom: 25px;
}

.witup-form input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid var(--witup-border);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.witup-form input:focus {
    outline: none;
    border-color: var(--witup-orange);
}

.witup-form .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* ===== BOTONES ===== */
.btn {
    display: inline-block;
    padding: 14px 45px;
    border-radius: 50px;
    text-decoration: underline;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    position: relative;
    top: 0;
}

.btn-primary {
    background-color: var(--witup-blue);
    color: white;
    box-shadow: 0 8px 0 var(--witup-orange);
}

.btn-primary:hover {
    background-color: var(--witup-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 0 var(--witup-orange);
}

.btn-primary:active {
    transform: translateY(6px);
    box-shadow: 0 2px 0 var(--witup-orange);
}

.btn-secondary {
    background-color: var(--witup-gray-dark);
    color: var(--witup-white);
    border: 2px solid var(--witup-gray-dark);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--witup-gray-dark);
}

/* Botón Franquicia (estilo especial) */
.btn-franchise {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--witup-blue);
    color: white;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 0 var(--witup-orange);
    transition: all 0.2s ease;
}

.btn-franchise::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 ease;
}

.btn-franchise:hover {
    background-color: var(--witup-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 0 var(--witup-orange);
}

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

.btn-franchise:active {
    transform: translateY(8px);
    box-shadow: 0 2px 0 var(--witup-orange);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background-color: var(--witup-gray-light);
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--witup-orange);
    line-height: 1.2;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--witup-gray-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== ABOUT SECTION ===== */
.why-choose-section,
.about-section {
    padding: 80px 0;
    background-color: var(--witup-white);
}

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

.why-content p,
.about-content p {
    color: var(--witup-gray-medium);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.why-image img,
.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--witup-border);
}

/* ===== OPPORTUNITY SECTION ===== */
.opportunity-section {
    padding: 80px 0;
    background-color: var(--witup-gray-light);
}

.opportunity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.opportunity-card {
    background-color: var(--witup-white);
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

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

.opportunity-card.soporte,
.opportunity-card.crece {
    border-bottom: 4px solid var(--witup-orange);
}

.opportunity-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--witup-gray-dark);
}

.opportunity-card .big-text {
    color: var(--witup-orange);
    display: block;
    font-size: 2.5rem;
}

.opportunity-card .card-sub {
    color: var(--witup-gray-medium);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.opportunity-card p {
    color: var(--witup-gray-medium);
    font-size: 1rem;
    line-height: 1.8;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 80px 0;
    background-color: var(--witup-white);
}

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

.feature-card {
    background-color: var(--witup-gray-light);
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--witup-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card h4 {
    color: var(--witup-gray-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--witup-gray-medium);
    font-size: 0.95rem;
    margin: 0;
    width: 100%;
}

/* ===== BENEFITS SECTION ===== */
.benefits-list-section {
    padding: 60px 0;
    background-color: var(--witup-white);
}

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

.benefit-item {
    background-color: var(--witup-gray-light);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 3px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--witup-orange);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.15);
}

.benefit-text {
    flex: 1;
    color: var(--witup-gray-dark);
    font-size: 1rem;
    line-height: 1.5;
}

.benefit-text strong {
    color: var(--witup-orange);
}

/* ===== BENEFITS REAL SECTION ===== */
.benefits-real-section {
    padding: 60px 0;
    background-color: var(--witup-gray-light);
}

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

.real-benefit-card {
    background-color: var(--witup-white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.real-benefit-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--witup-orange);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.15);
}

.real-benefit-card h4 {
    color: var(--witup-gray-dark);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.5;
}

/* ===== STEPS SECTION ===== */
.steps-section {
    padding: 60px 0;
    background-color: var(--witup-white);
    overflow: hidden;
}

.steps-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.step-card {
    flex: 1 1 180px;
    max-width: 220px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--witup-white);
    padding: 20px 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.step-number-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--witup-orange);
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.step-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background-color: var(--witup-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.step-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.step-title {
    color: var(--witup-gray-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-description {
    color: var(--witup-gray-medium);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ===== ICONOS COMPARTIDOS ===== */
.feature-icon,
.benefit-icon,
.real-benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    flex-shrink: 0;
}

.feature-icon {
    background-color: var(--witup-blue);
    margin: 0 auto 20px;
}

.benefit-icon {
    background-color: var(--witup-orange);
    width: 50px;
    height: 50px;
    font-size: 24px;
}

.real-benefit-icon {
    background-color: var(--witup-orange);
    margin-bottom: 20px;
}

.feature-icon i,
.benefit-icon i,
.real-benefit-icon i {
    color: white;
    font-size: inherit;
    line-height: 1;
    display: block;
    text-align: center;
}

.feature-icon img,
.benefit-icon img,
.real-benefit-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.benefit-icon img,
.real-benefit-icon img {
    filter: brightness(0) invert(1);
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--witup-white) 0%, var(--witup-gray-light) 100%);
}

.table-responsive {
    overflow-x: auto;
    margin: 40px 0 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--witup-white);
    font-size: 0.95rem;
    min-width: 800px;
}

.comparison-table thead tr {
    background: linear-gradient(135deg, var(--witup-gray-dark) 0%, #2d3748 100%);
}

.comparison-table th {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    padding: 20px 25px;
    text-align: left;
}

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

.comparison-table th:last-child {
    border-top-right-radius: 16px;
}

.comparison-table td {
    padding: 18px 25px;
    border-bottom: 1px solid var(--witup-border);
    color: var(--witup-gray-dark);
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
    background-color: rgba(249, 115, 22, 0.03);
}

.comparison-table tbody tr:hover td {
    border-bottom-color: var(--witup-orange);
}

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

.comparison-table td.witup-highlight {
    color: var(--witup-orange);
    font-weight: 500;
    position: relative;
    padding-left: 45px;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--witup-gray-dark);
    background-color: rgba(249, 115, 22, 0.02);
}

.comparison-table tbody tr:nth-child(even) {
    background-color: var(--witup-gray-light);
}

.check-icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    background-color: var(--witup-orange);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-size: 14px;
    margin-right: 10px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Savings Box */
.savings-box {
    background: linear-gradient(135deg, var(--witup-orange) 0%, #f59e0b 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3);
    max-width: 800px;
    margin: 40px auto 0;
}

.savings-box strong {
    color: var(--witup-gray-dark);
}

.savings-icon {
    font-size: 2.5rem;
    line-height: 1;
}

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

.savings-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    background: linear-gradient(135deg, var(--witup-gray-dark) 0%, #111827 100%);
    color: var(--witup-white);
    text-align: center;
    padding: 100px 20px;
    border-top: 5px solid var(--witup-orange);
}

.final-cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--witup-white);
}

.final-cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 20px;
    color: var(--witup-gray-light);
}

.final-cta-section .price-tag {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.final-cta-section .highlight {
    color: var(--witup-orange);
    font-weight: 700;
    background: rgba(249, 115, 22, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
}

/* ===== FRANCHISE SECTION ===== */
.franchise-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--witup-white) 0%, var(--witup-gray-light) 100%);
    position: relative;
    overflow: hidden;
}

.franchise-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(249,115,22,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.franchise-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.franchise-content {
    text-align: left;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border: 1px solid var(--witup-border);
}

.franchise-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--witup-gray-dark);
    margin-bottom: 20px;
}

.franchise-content p:last-child {
    margin-bottom: 0;
}

.franchise-content strong {
    color: var(--witup-orange);
    font-weight: 600;
}

.franchise-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.franchise-content li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--witup-gray-dark);
    border-bottom: 1px dashed var(--witup-border);
}

.franchise-content li:last-child {
    border-bottom: none;
}

.franchise-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--witup-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.franchise-image-wrapper {
    margin: 40px 0;
    text-align: center;
}

.franchise-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
}

.franchise-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== FOOTER PROFESIONAL ===== */
.site-footer {
    background-color: var(--witup-gray-dark);
    color: var(--witup-white);
    padding: 60px 0 30px;
    border-top: 4px solid var(--witup-orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--witup-gray-light);
    margin: 20px 0;
    font-size: 1rem;
    line-height: 1.8;
}

.footer-brand .custom-logo {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

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

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: var(--witup-gray-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--witup-orange);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--witup-gray-medium);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--witup-orange);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===== HUBSPOT FORM STYLES ===== */
.hero-form-wrapper {
    margin-top: 30px;
    max-width: 100%;
    background: var(--witup-white);
    border-radius: 10px;
    padding: 0;
}

.hbspt-form,
.hsfc-Step__Content {
    width: 100%;
    background: transparent;
}

.hsfc-Row {
    margin-bottom: 20px;
    width: 100%;
}

.hsfc-RichText p:first-child {
    margin-bottom: 10px;
}

.hsfc-RichText p:first-child strong {
    font-size: 30px !important;
    color: var(--witup-gray-dark);
    font-family: 'Poppins', sans-serif;
}

.hsfc-RichText p:last-of-type {
    color: var(--witup-gray-medium);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hsfc-FieldLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--witup-gray-dark);
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.hsfc-FieldLabel__RequiredIndicator {
    color: var(--witup-orange);
    margin-left: 3px;
}

.hsfc-TextInput,
.hsfc-TextareaInput {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--witup-border);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--witup-gray-dark);
    background-color: var(--witup-white) !important;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.hsfc-TextInput:focus,
.hsfc-TextareaInput:focus {
    outline: none;
    border-color: var(--witup-blue);
    box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.1);
}

.hsfc-TextInput::placeholder,
.hsfc-TextareaInput::placeholder {
    color: var(--witup-gray-medium);
    opacity: 0.7;
}

.hsfc-Row:has(.hsfc-TextField) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hsfc-PhoneInput {
    display: flex;
    align-items: center;
    border: 1px solid var(--witup-border);
    border-radius: 8px;
    background-color: var(--witup-white);
    overflow: hidden;
}

.hsfc-PhoneInput .hsfc-TextInput {
    border: none;
    border-left: 1px solid var(--witup-border);
    border-radius: 0 8px 8px 0;
    padding-left: 12px;
}

.hsfc-PhoneInput__FlagAndCaret {
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    min-width: 70px;
}

.hsfc-PhoneInput__FlagAndCaret__Flag {
    font-size: 1.2rem;
}

.hsfc-PhoneInput__FlagAndCaret__Caret {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--witup-gray-medium);
}

.hsfc-DropdownOptions {
    position: absolute;
    background: var(--witup-white);
    border: 1px solid var(--witup-border);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    width: 300px;
}

.hsfc-DropdownOptions__Search {
    padding: 15px;
    border-bottom: 1px solid var(--witup-border);
}

.hsfc-DropdownOptions__Search input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--witup-border);
    border-radius: 6px;
}

.hsfc-DropdownOptions__List {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 250px;
    overflow-y: auto;
}

.hsfc-DropdownOptions__List__ListItem {
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--witup-border-light);
}

.hsfc-DropdownOptions__List__ListItem:hover {
    background-color: var(--witup-gray-light);
}

.hsfc-DropdownOptions__List__ListItem--selected {
    background-color: rgba(0, 71, 171, 0.05);
    border-left: 3px solid var(--witup-blue);
}

.hsfc-TextareaInput {
    min-height: 120px;
    resize: vertical;
}

.hsfc-Button {
    background-color: var(--witup-blue);
    color: var(--witup-white);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--witup-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.hsfc-Button:hover {
    background-color: transparent;
    color: var(--witup-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 71, 171, 0.2);
}

.hsfc-Button:active {
    transform: translateY(0);
}

.hsfc-NavigationRow__Alerts {
    margin: 15px 0;
}

.hsfc-Step__Content {
    background: transparent !important;
    color: inherit;
}

.hsfc-TextField {
    width: 100%;
}

[class*="hsfc-"] {
    background-color: transparent;
}

.hsfc-FieldLabel,
.hsfc-TextInput,
.hsfc-TextareaInput,
.hsfc-RichText p {
    color: var(--witup-gray-dark);
}

/* ===== RESPONSIVE GLOBAL ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 20px;
    }
    
    .savings-box {
        flex-direction: column;
        text-align: center;
        border-radius: 30px;
        padding: 25px;
    }
    
    .savings-icon {
        font-size: 2rem;
    }
    
    .franchise-content {
        padding: 30px;
    }
    
    .btn-franchise {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
    
    .steps-timeline::before {
        display: none;
    }
    
    .steps-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        max-width: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }
    
    .step-number-wrapper {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .step-icon {
        width: 30px;
        height: 30px;
        bottom: -5px;
        right: -5px;
    }
    
    .step-icon img {
        width: 18px;
        height: 18px;
    }
    
    .step-title {
        min-height: auto;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }
    
    .primary-menu {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-top: 15px;
    }
    
    .hero-grid,
    .why-grid,
    .opportunity-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        margin-top: 120px;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .opportunity-card {
        padding: 30px;
    }
    
    .final-cta-section h2 {
        font-size: 2rem;
    }
    
    .final-cta-section .price-tag {
        font-size: 1.4rem;
    }
    
    .real-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .real-benefit-card {
        padding: 25px 20px;
    }
    
    .real-benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .step-card {
        max-width: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }
    
    .step-number-wrapper {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .step-icon {
        width: 30px;
        height: 30px;
        bottom: -5px;
        right: -5px;
    }
    
    .step-icon img {
        width: 18px;
        height: 18px;
    }
    
    .step-title {
        min-height: auto;
        justify-content: flex-start;
    }
    
    /* Comparación responsive */
    .comparison-table,
    .comparison-table thead,
    .comparison-table tbody,
    .comparison-table th,
    .comparison-table td,
    .comparison-table tr {
        display: block;
    }
    
    .comparison-table thead {
        display: none;
    }
    
    .comparison-table tr {
        margin-bottom: 20px;
        border: 1px solid var(--witup-border);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .comparison-table td {
        display: flex;
        align-items: center;
        padding: 15px;
        border-bottom: 1px solid var(--witup-border);
        min-height: 60px;
    }
    
    .comparison-table td:last-child {
        border-bottom: none;
    }
    
    .comparison-table td::before {
        content: attr(data-label);
        width: 40%;
        font-weight: 600;
        color: var(--witup-gray-medium);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .comparison-table td.witup-highlight {
        padding-left: 15px;
    }
    
    .check-icon {
        position: static;
        transform: none;
        margin-right: 10px;
        flex-shrink: 0;
    }
    
    .savings-box {
        border-radius: 20px;
        margin-top: 30px;
    }
    
    .savings-text {
        font-size: 1rem;
    }
    
    .savings-amount {
        font-size: 1.2rem;
    }
    
    .franchise-content {
        padding: 25px;
    }
    
    .franchise-content p {
        font-size: 1rem;
    }
    
    .franchise-content li {
        font-size: 0.95rem;
        padding: 10px 0 10px 30px;
    }
    
    .btn-franchise {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 350px;
    }
    
    /* HubSpot responsive */
    .hero-form-wrapper {
        margin-top: 20px;
        padding: 20px;
    }
    
    .hsfc-Row:has(.hsfc-TextField) {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hsfc-PhoneInput {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hsfc-PhoneInput .hsfc-TextInput {
        border-left: none;
        border-top: 1px solid var(--witup-border);
        border-radius: 0 0 8px 8px;
    }
    
    .hsfc-PhoneInput__FlagAndCaret {
        padding: 12px;
    }
    
    .hsfc-Button {
        padding: 14px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .step-card {
        flex-direction: column;
        text-align: center;
    }
    
    .step-title {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .comparison-section {
        padding: 40px 0;
    }
    
    .comparison-table td {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .comparison-table td::before {
        width: 100%;
    }
    
    .savings-box {
        padding: 20px;
    }
    
    .franchise-section {
        padding: 40px 0;
    }
    
    .franchise-content {
        padding: 20px;
    }
    
    .franchise-content li {
        padding: 8px 0 8px 28px;
    }
    
    .franchise-content li::before {
        font-size: 1rem;
    }
    
    .hsfc-DropdownOptions {
        width: 280px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ========================================
   CONTROL SECTION - Imagen centrada al 50%
   ======================================== */

.control-section .control-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.control-section .control-image img {
    width: 50%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .control-section .control-image img {
        width: 80%;
    }
}

/* ========================================
   FRANCHISE SECTION - Formulario HubSpot
   ======================================== */

.franchise-form-wrapper {
    margin-top: 40px;
    padding: 30px;
    background: var(--witup-white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--witup-border);
}

.franchise-form-wrapper .hbspt-form {
    width: 100%;
}

.franchise-form-wrapper .hsfc-Row {
    margin-bottom: 20px;
}

.franchise-form-wrapper .hsfc-Button {
    background-color: var(--witup-blue);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--witup-blue);
    transition: all 0.3s ease;
}

.franchise-form-wrapper .hsfc-Button:hover {
    background-color: transparent;
    color: var(--witup-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 71, 171, 0.2);
}

@media (max-width: 768px) {
    .franchise-form-wrapper {
        padding: 20px;
    }
}

/* ========================================
   HEADER - CON TELÉFONO
   ======================================== */

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

/* Teléfono */
.header-phone {
    position: relative;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--witup-orange) 0%, #f59e0b 100%);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
    border: 2px solid transparent;
}

.phone-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    background: white;
    color: var(--witup-orange);
    border-color: var(--witup-orange);
}

.phone-link:hover .phone-icon {
    color: var(--witup-orange);
}

.phone-icon {
    font-size: 1.2rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.phone-number {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.phone-icon i {
    font-size: 1.2rem;
    color: white;
    transition: color 0.3s ease;
}

.phone-link:hover .phone-icon i {
    color: var(--witup-orange);
}

/* Responsive */
@media (max-width: 992px) {
    .header-wrapper {
        height: auto;
        padding: 15px 0;
    }
    
    .header-right {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .primary-menu {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        width: 100%;
    }
    
    .header-phone {
        width: 100%;
        text-align: center;
    }
    
    .phone-link {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
    }
    
    .header-right {
        margin-top: 15px;
    }
}

.hero-banner {
    margin: 20px 0 30px;
    display: inline-block;
    max-width: 100%;
}

.hero-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-banner a {
    display: inline-block;
    text-decoration: none;
}

.hero-banner a:hover img {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

/* Estilos para el favicon cuando solo hay URL */
.banner-favicon-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background: #f5f5f5;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    border: 1px solid #e0e0e0;
    transition: background 0.3s ease;
}

.banner-favicon-link:hover {
    background: #e8e8e8;
}

.hero-banner-favicon {
    width: 24px !important;
    height: 24px !important;
    margin-right: 8px;
    box-shadow: none !important;
    border-radius: 4px;
}

.hero-banner-domain {
    font-size: 14px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-banner {
        margin: 15px 0 25px;
    }
    
    .banner-favicon-link {
        padding: 6px 12px;
    }
    
    .hero-banner-domain {
        font-size: 13px;
    }
}

/* Estilos para Embed Card estilo Facebook */
.embed-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    margin: 20px 0;
    max-width: 500px; /* Ancho típico de tarjeta */
}

.embed-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.embed-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.embed-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

.embed-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.embed-card:hover .embed-card-image img {
    transform: scale(1.05);
}

.embed-card-content {
    padding: 15px;
}

.embed-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 12px;
    color: #666;
}

.embed-card-favicon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    border-radius: 3px;
}

.embed-card-domain {
    font-weight: 500;
    text-transform: lowercase;
}

.embed-card-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a0dab;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.embed-card-description {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #4d5156;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Si no hay imagen */
.embed-card.no-image .embed-card-content {
    border-top: 3px solid #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
    .embed-card-link {
        max-width: 100%;
    }
    
    .embed-card-image {
        height: 160px;
    }
    
    .embed-card-title {
        font-size: 15px;
    }
    
    .embed-card-description {
        font-size: 13px;
    }
}

/* Estilo para cuando solo hay favicon (modo simple) */
.embed-card.no-image .embed-card-content {
    border-top: 1px solid #e0e0e0;
}

.embed-card.no-image .embed-card-header {
    margin-bottom: 12px;
}

.embed-card.no-image .embed-card-title {
    font-size: 15px;
    margin-bottom: 6px;
}

.embed-card.no-image .embed-card-description {
    font-size: 13px;
    opacity: 0.8;
}