@font-face {
    font-family: 'Syne';
    src: url('Font/Syne-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Syne';
    src: url('Font/Syne-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Syne';
    src: url('Font/Syne-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'Syne';
    src: url('Font/Syne-Bold.ttf') format('truetype');
    font-weight: 700;
}

:root {
    --dark-blue: #0D1230;
    --light-blue: #3A4B63;
    --accent: #ecd596;
    --gray: #B8B8A6;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    --black: #000000;
    --success: #10B981;
    --danger: #EF4444;
    --occupied: #FCA5A5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Syne', sans-serif;
    background: rgba(184, 178, 166, 0.2);
    color: var(--black);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

.header {
    background: linear-gradient(135deg, #0D1230 0%, #1a2a45 100%);
    color: rgba(255, 247, 233, 0.7);
    padding: 60px 40px;
    text-align: center;
}

.logo {
    width: 85px;
    height: 85px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.6;
}

/* KPI SECTION */
.kpi-section {
    background: #0D1230;
    padding: 50px 40px 40px;
    text-align: center;
}

.kpi-label {
    color: #B8B8A6;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 40px;
    font-weight: 500;
}

.kpi-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    max-width: 900px;
    margin: 0 auto;
}

.kpi-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.kpi-value {
    color: #ecd596;
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.kpi-name {
    color: rgba(255, 247, 233, 0.6);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.kpi-growth {
    color: #10B981;
    font-size: 0.95rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .kpi-section {
        padding: 30px 15px 25px;
    }

    .kpi-grid {
        gap: 25px;
    }

    .kpi-card {
        flex: 1;
    }

    .kpi-value {
        font-size: 1.7rem;
    }

    .kpi-name {
        font-size: 0.65rem;
    }

    .kpi-label {
        font-size: 0.7rem;
        margin-bottom: 25px;
    }
}

/* TICKER MARQUEE */
.ticker-wrapper {
    background: #000000;
    overflow: hidden;
    position: relative;
    padding: 12px 0;
}

.ticker-track {
    display: flex;
    width: fit-content;
    animation: ticker-scroll 40s linear infinite;
}

.ticker-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ticker-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    padding: 0 18px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-item strong {
    color: #ffffff;
    font-weight: 700;
    margin-right: 5px;
}

.ticker-item em {
    color: #10B981;
    font-style: normal;
    font-weight: 600;
    margin-left: 5px;
}

.ticker-dot {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* CALENDLY SECTION */
.calendly-section {
    background: rgba(184, 178, 166, 0.2);
    padding: 70px 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid #E0E4E8;
}

.video-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.video-intro video {
    width: 100%;
    height: auto;
    display: block;
}

.calendly-inline-widget {
    max-width: 1200px;
    margin: 0 auto;
}


/* Info Section */
.info-section {
    padding: 90px 40px;
    background: linear-gradient(135deg, #1a1f3a 0%, #0D1230 100%);
}

.info-section h2 {
    text-align: center;
    color: #ecd596;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 70px;
    letter-spacing: -0.5px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: #1a1f3a;
    padding: 45px 35px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border-left: 4px solid rgba(236, 213, 150, 0.6);
    box-shadow: 0 4px 15px rgba(236, 213, 150, 0.08);
}

.info-card:hover {
    transform: translateY(-6px);
    border-left-color: #ecd596;
    box-shadow: 0 12px 32px rgba(236, 213, 150, 0.15);
}

.info-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, #ecd596 0%, #3A4B63 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0D1230;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(236, 213, 150, 0.15);
    transition: all 0.4s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(236, 213, 150, 0.2);
}

.info-card h3 {
    color: #ecd596;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.info-card p {
    color: #B8B8A6;
    font-size: 1rem;
    line-height: 1.75;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 40px 20px;
    }

    .header h1 {
        font-size: 1.6rem;
    }

    .logo {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .calendly-section {
        padding: 30px 15px;
        margin-bottom: 20px;
    }

    .video-intro {
        margin: 0 auto 30px;
    }

    .calendly-inline-widget {
        min-width: 100% !important;
    }

    .footer-section {
        padding: 50px 20px;
    }

    .footer-section h2 {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
        margin: 30px auto;
    }

    .client-logo {
        height: auto;
        padding: 15px 10px;
    }

    .client-logo img {
        width: 60%;
    }

    .client-logo p {
        font-size: 0.7rem;
    }

    .content-wrapper {
        padding: 20px;
    }

    .calendar {
        gap: 5px;
    }

    .calendar-day {
        font-size: 0.85rem;
    }
}

/* Success Modal */
.modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    color: #ecd596;
    font-size: 2rem;
    margin-bottom: 15px;
}

.modal-content p {
    color: #B8B8A6;
    margin-bottom: 25px;
    line-height: 1.6;
}

.modal-btn {
    padding: 12px 30px;
    background: #ecd596;
    color: #0D1230;
    border: none;
    border-radius: 8px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: #3A4B63;
    color: var(--white);
}
/* Thank You Page */
.thank-you-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0D1230 0%, #1a1f3a 100%);
}

.thank-you-content {
    background: #FFFFFF;
    padding: 70px 60px;
    border-radius: 16px;
    max-width: 750px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(234, 235, 131, 0.15);
    animation: slideIn 0.6s ease;
}

.thank-you-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #ecd596 0%, #B8B8A6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0D1230;
    animation: scaleIn 0.5s ease 0.3s backwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-content h1 {
    color: #0D1230;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.main-message {
    color: #0D1230;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 45px;
}

.main-message strong {
    color: #0D1230;
    font-weight: 600;
}

.details-box {
    background: rgba(184, 178, 166, 0.1);
    padding: 40px 35px;
    border-radius: 12px;
    margin-bottom: 45px;
    border-left: 4px solid #B8B8A6;
}

.details-box h2 {
    color: #0D1230;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: -0.3px;
}

.next-steps {
    list-style: none;
    text-align: left;
}

.next-steps li {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #0D1230;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.next-steps li:last-child {
    margin-bottom: 0;
}

.step-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ecd596 0%, #3A4B63 100%);
    border-radius: 10px;
    color: #0D1230;
    box-shadow: 0 4px 12px rgba(236, 213, 150, 0.15);
    transition: all 0.4s ease;
}

.next-steps li:hover .step-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(236, 213, 150, 0.2);
}

.cta-section {
    margin-bottom: 40px;
}

.footer-message {
    color: #0D1230;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.contact-btn {
    display: inline-block;
    padding: 14px 38px;
    background: linear-gradient(135deg, #ecd596 0%, #B8B8A6 100%);
    color: #0D1230;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(236, 213, 150, 0.2);
    letter-spacing: -0.2px;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 213, 150, 0.3);
}

.signature {
    border-top: 2px solid #B8B8A6;
    padding-top: 35px;
    color: #0D1230;
    font-size: 1.05rem;
    line-height: 1.7;
}

.signature p {
    margin: 8px 0;
}

.signature-name {
    color: #0D1230;
    font-weight: 600;
}

/* Responsive Thank You Page */
@media (max-width: 768px) {
    .thank-you-content {
        padding: 40px 30px;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }

    .thank-you-logo {
        width: 80px;
        height: 80px;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .next-steps li {
        font-size: 0.95rem;
    }
}

/* Welcome Page Styles */
.intro-section {
    padding: 70px 40px;
    text-align: center;
    background: transparent;
    border-bottom: 1px solid #0D1230;
}

.intro-section h2 {
    color: #0D1230;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.intro-description {
    color: #0D1230;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Videos Section */
.videos-section {
    padding: 80px 40px;
    background: transparent;
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.video-card {
    background: #1a1f3a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(236, 213, 150, 0.08);
    transition: all 0.4s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(236, 213, 150, 0.15);
}

.video-card video {
    display: block;
    width: 100%;
    height: auto;
}

.video-card h3 {
    color: #ecd596;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 22px 20px 18px;
    text-align: center;
    letter-spacing: -0.3px;
}

/* CTA Section */
.cta-section {
    padding: 90px 40px;
    background: transparent;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    opacity: 0.98;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background: #ecd596;
    color: #0D1230;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(236, 213, 150, 0.2);
    letter-spacing: -0.3px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(236, 213, 150, 0.3);
}

/* Footer Section */
.footer-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #0D1230 0%, #1a1f3a 100%);
    text-align: center;
}

.footer-section h2 {
    color: #ecd596;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    padding: 0 40px;
    max-width: 1200px;
    margin: 60px auto;
    align-items: center;
    justify-items: center;
}

.client-logo {
    background: #1a1f3a;
    padding: 20px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(236, 213, 150, 0.06);
    border: 1px solid #3A4B63;
}

.client-logo:hover {
    box-shadow: 0 6px 18px rgba(236, 213, 150, 0.12);
    transform: translateY(-3px);
}

.client-logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
}

.client-logo img {
    width: 65%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

.client-logo p {
    color: #ecd596;
    font-size: 0.8rem;
    margin-top: 10px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    word-break: break-word;
}

/* Responsive Design for Welcome Page */
@media (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .intro-section {
        padding: 40px 20px;
    }

    .intro-section h2 {
        font-size: 1.8rem;
    }

    .intro-description {
        font-size: 0.95rem;
    }

    .videos-section {
        padding: 40px 20px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-card h3 {
        font-size: 1rem;
    }

    .cta-section {
        padding: 50px 20px;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .footer-section {
        padding: 50px 20px;
    }

    .footer-section h2 {
        font-size: 1.6rem;
        margin-bottom: 35px;
    }

    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }

    .client-logo {
        height: 140px;
        aspect-ratio: 1 / 1;
        padding: 12px;
    }

    .client-logo img {
        max-height: 110px;
        max-width: 110px;
    }
}

/* Powered By Footer */
.powered-by {
    background: #0D1230;
    padding: 22px 40px;
    text-align: center;
    border-top: 1px solid #3A4B63;
}

.powered-by p {
    margin: 0;
    color: #B8B8A6;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.powered-by strong {
    color: #ecd596;
    font-weight: 500;
}

/* Modal de Éxito */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #FFFFFF !important;
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid #E8DFD5;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #0D1230;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ecd596;
}

.thank-you-modal {
    text-align: center;
    color: #0D1230;
}

.thank-you-modal img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.success-icon {
    color: var(--success);
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thank-you-modal h1 {
    font-size: 2rem;
    color: #0D1230;
    margin-bottom: 20px;
    font-weight: 700;
}

.main-message {
    color: #0D1230;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

.main-message strong {
    color: #1a1f3a;
    font-weight: 600;
}

.details-box {
    background: rgba(13, 18, 48, 0.05);
    border: 1px solid #DDD0C4;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.details-box h2 {
    font-size: 1.3rem;
    color: #0D1230;
    margin-bottom: 15px;
}

.next-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-steps li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #0D1230;
    gap: 12px;
}

.next-steps li:last-child {
    margin-bottom: 0;
}

.step-icon {
    flex-shrink: 0;
    color: #ecd596;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section {
    margin-bottom: 20px;
}

.footer-message {
    color: #0D1230;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-btn {
    display: inline-block;
    background: #ecd596;
    color: #0D1230;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
}

.contact-btn:hover {
    background: #d4a854;
    transform: translateY(-2px);
}

.signature {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #DDD0C4;
    color: #0D1230;
    font-size: 0.95rem;
}

.signature p {
    margin: 5px 0;
}

.signature-name {
    margin-top: 10px;
}

.signature-name strong {
    color: #1a1f3a;
}

/* Responsive para modal */
@media (max-width: 640px) {
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .thank-you-modal h1 {
        font-size: 1.5rem;
    }

    .details-box {
        padding: 15px;
    }

    .next-steps li {
        gap: 10px;
    }

    .step-icon {
        min-width: 32px;
    }

    .step-icon svg {
        width: 24px;
        height: 24px;
    }
}