@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');

/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comfortaa', sans-serif;
    background: #FFFFFF;
    min-height: 100vh;
    color: #333333;
    line-height: 1.6;
}

/* Contenedor principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

/* Botones de contacto flotantes */
.contact-buttons {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-btn.whatsapp {
    background: #25D366;
}

.contact-btn.telegram {
    background: #0088CC;
}

.contact-btn svg {
    width: 30px;
    height: 30px;
}

/* Logo */
.logo-container {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.main-logo {
    max-width: 400px;
    height: auto;
    width: 100%;
}

/* Tipografía de marca */
.brand-name {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-weight: normal;
}

.brand-name .gofor {
    color: #B91C1C;
}

.brand-name .coffee {
    color: #374151;
}

/* Títulos */
h1 {
    color: #1F2937;
    font-size: 3em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.subtitle {
    color: #6B7280;
    font-size: 1.4em;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

/* Navegación */
.nav-links {
    text-align: center;
    margin-bottom: 40px;
}

.nav-links a {
    color: #B91C1C;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 500;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #991B1B;
}

/* Sección principal de contenido */
.main-content {
    margin-bottom: 60px;
}

.value-proposition {
    color: #1F2937;
    font-size: 1.8em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.4;
    padding: 30px;
    background: linear-gradient(135deg, #FEF2F2 0%, #F9FAFB 100%);
    border-radius: 20px;
    border: 2px solid #B91C1C;
    position: relative;
}

.value-proposition::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #B91C1C, #374151);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
}

.content-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.content-section {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
    position: relative;
}

.content-section.cafeterias {
    border-left: 6px solid #B91C1C;
}

.content-section.amantes {
    border-left: 6px solid #374151;
}

.section-icon {
    font-size: 3em;
    text-align: center;
    margin-bottom: 20px;
    filter: grayscale(20%);
}

.content-section h3 {
    color: #1F2937;
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.content-section p {
    color: #4B5563;
    font-size: 1.05em;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

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

.content-section strong {
    color: #B91C1C;
    font-weight: 600;
}

/* Sección CTA */
.cta-section {
    background: #FEF2F2;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 2px solid #B91C1C;
    position: relative;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 30px;
    width: 30px;
    height: 30px;
    background: #B91C1C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section h2 {
    color: #B91C1C;
    font-size: 1.8em;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-section h2::before {
    content: "";
    width: 32px;
    height: 32px;
    background: #B91C1C;
    border-radius: 8px;
    display: inline-block;
    position: relative;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.cta-section p {
    color: #374151;
    margin-bottom: 15px;
    font-size: 1.05em;
}

/* Descripción general */
.description {
    background: #F9FAFB;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 1px solid #E5E7EB;
}

.description p {
    font-size: 1.1em;
    color: #4B5563;
    margin-bottom: 20px;
}

/* Formularios */
.form-container {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    color: #1F2937;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.form-title {
    color: #1F2937;
    font-size: 1.5em;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.form-section {
    margin-bottom: 35px;
}

.section-title {
    color: #1F2937;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #B91C1C;
}

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

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

.full-width {
    grid-column: 1 / -1;
}

label {
    color: #374151;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95em;
}

input, textarea {
    padding: 12px;
    border: 2px solid #D1D5DB;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Comfortaa', sans-serif;
    transition: border-color 0.3s ease;
    background: #FFFFFF;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #B91C1C;
    box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Comfortaa', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
}

.submit-btn::before {
    content: "";
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 4px;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(185, 28, 28, 0.3);
}

/* Botón de roadmap */
.roadmap-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.roadmap-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(185, 28, 28, 0.3);
    border-color: #B91C1C;
    background: #FFFFFF;
    color: #B91C1C;
}

.roadmap-btn svg {
    transition: all 0.3s ease;
}

/* Plan Founder Destacado */
.founder-plan {
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
    color: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(185, 28, 28, 0.2);
    border: 3px solid #B91C1C;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 20px 50px rgba(185, 28, 28, 0.2); }
    to { box-shadow: 0 25px 60px rgba(185, 28, 28, 0.3); }
}

.founder-plan h3 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

.founder-price {
    font-size: 3em;
    font-weight: 700;
    margin: 20px 0;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item::before {
    content: "";
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 4px;
    flex-shrink: 0;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Otros planes */
.other-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.plan-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    border: 2px solid #E5E7EB;
    position: relative;
    opacity: 0.6;
}

.plan-card.unavailable::before {
    content: "NO DISPONIBLE TODAVÍA";
    position: absolute;
    top: 15px;
    right: 15px;
    background: #EF4444;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-card.free {
    opacity: 1;
    border: 2px solid #374151;
}

.plan-name {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1F2937;
}

.plan-price {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #B91C1C;
}

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

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #F3F4F6;
    color: #4B5563;
    font-size: 0.95em;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: "";
    width: 16px;
    height: 16px;
    background: #B91C1C;
    border-radius: 3px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Timeline del roadmap */
.timeline {
    position: relative;
    margin: 50px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 60px;
    width: 4px;
    background: linear-gradient(to bottom, #B91C1C, #374151);
    transform: translateX(-50%);
}

.timeline::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #374151;
    z-index: 10;
}

.timeline-end {
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    background: #374151;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    white-space: nowrap;
}

.milestone {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.milestone:nth-child(odd) {
    flex-direction: row;
}

.milestone:nth-child(even) {
    flex-direction: row-reverse;
}

.milestone-content {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #E5E7EB;
    width: 45%;
    position: relative;
}

.milestone:nth-child(odd) .milestone-content {
    margin-right: 10%;
}

.milestone:nth-child(even) .milestone-content {
    margin-left: 10%;
}

.milestone-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: 10;
}

.milestone-dot.hecho {
    background: #10B981;
    border: 4px solid #FFFFFF;
    box-shadow: 0 0 0 4px #10B981;
}

.milestone-dot.en-progreso {
    background: #F59E0B;
    border: 4px solid #FFFFFF;
    box-shadow: 0 0 0 4px #F59E0B;
    animation: pulse 2s infinite;
}

.milestone-dot.planificado {
    background: #6B7280;
    border: 4px solid #FFFFFF;
    box-shadow: 0 0 0 4px #6B7280;
}

.milestone-dot.cancelado {
    background: #EF4444;
    border: 4px solid #FFFFFF;
    box-shadow: 0 0 0 4px #EF4444;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.milestone-title {
    color: #1F2937;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.milestone-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
}

.status-hecho {
    background: #D1FAE5;
    color: #065F46;
}

.status-en-progreso {
    background: #FEF3C7;
    color: #92400E;
}

.status-planificado {
    background: #F3F4F6;
    color: #374151;
}

.status-cancelado {
    background: #FEE2E2;
    color: #991B1B;
}

.milestone-dates {
    color: #6B7280;
    font-size: 0.9em;
    margin-bottom: 10px;
    font-weight: 500;
}

.milestone-duration {
    color: #9CA3AF;
    font-size: 0.85em;
    margin-bottom: 15px;
}

.milestone-responsible {
    background: #F9FAFB;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9em;
    color: #4B5563;
    border-left: 4px solid #B91C1C;
}

.quarter-header {
    text-align: center;
    margin: 80px 0 40px;
    position: relative;
}

.quarter-header h2 {
    background: #FFFFFF;
    color: #B91C1C;
    padding: 15px 30px;
    border-radius: 25px;
    border: 3px solid #B91C1C;
    display: inline-block;
    font-size: 1.5em;
    font-weight: 700;
    position: relative;
    z-index: 5;
}

.legend {
    background: #F9FAFB;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 1px solid #E5E7EB;
}

.legend h3 {
    color: #1F2937;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Mensaje de éxito */
.success-message {
    display: none;
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
    text-align: center;
    font-size: 1.1em;
    box-shadow: 0 10px 30px rgba(185, 28, 28, 0.2);
}

.success-message.show {
    display: block;
    animation: slideIn 0.5s ease-out;
}

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

.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Footer */
.footer {
    background: #1F2937;
    color: #F9FAFB;
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-tagline {
    color: #9CA3AF;
    font-size: 0.95em;
    margin: 0;
}

.footer-social h4 {
    color: #F9FAFB;
    margin-bottom: 20px;
    font-size: 1.1em;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #374151;
    color: #F9FAFB;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #B91C1C;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(185, 28, 28, 0.3);
}

.social-link[title="WhatsApp"]:hover {
    background: #25D366;
}

.social-link[title="Telegram"]:hover {
    background: #0088CC;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #374151;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #9CA3AF;
    font-size: 0.9em;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #B91C1C;
}

/* Media queries responsive */
@media (max-width: 768px) {
    /* Timeline responsive */
    .timeline::before {
        left: 30px;
    }

    .milestone {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }

    .milestone-content {
        width: 100% !important;
        margin: 0 !important;
    }

    .milestone-dot {
        left: 30px !important;
        transform: translateY(-50%) !important;
    }

    /* Tipografía responsive */
    h1 { font-size: 2.2em; }
    .subtitle { font-size: 1.2em; }
    .value-proposition {
        font-size: 1.4em;
        padding: 25px 20px;
    }
    .content-section {
        padding: 30px 20px;
    }
    .nav-links a { margin: 0 10px; font-size: 1em; }

    /* Formulario responsive */
    .form-grid { grid-template-columns: 1fr; }
    .founder-plan { padding: 30px 20px; }
    .founder-plan h3 { font-size: 2em; }
    .founder-price { font-size: 2.5em; }
    .other-plans { grid-template-columns: 1fr; }
    .logo-container .main-logo { max-width: 300px; }

    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

    /* Botones de contacto responsive */
    .contact-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        top: auto;
    }
}
