* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #FBE7E3 0%, #F8D7DA 100%);
    min-height: 100vh;
}

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

/* Header */
header {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(231, 76, 60, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    /* ya no necesitamos fondo de color */
    padding: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* asegura que la imagen no se deforme */
    border-radius: 12px;
    /* opcional, si quieres que respete la esquina redondeada */
}

.logo h2 {
    font-size: 24px;
    color: #E74C3C;
    font-weight: 600;
}

.cta-header {
    background: #E74C3C;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.cta-header:hover {
    transform: translateY(-2px);
    background: #c0392b;
}

/* Hero Section */
.hero {
    padding: 30px 0;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #E74C3C;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #666;
    /*margin-bottom: 40px;*/
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-demo {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    max-width: 400px;
    border: 2px solid rgba(231, 76, 60, 0.2);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.1);
}

.plus-code-demo {
    background: #E74C3C;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0;
    letter-spacing: 1px;
}

.demo-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.demo-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(231, 76, 60, 0.3);
    background: rgba(231, 76, 60, 0.1);
    color: #E74C3C;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.demo-btn.primary {
    background: #E74C3C;
    color: white;
    border-color: #E74C3C;
}

/* Features */
.features {
    padding: 35px 0;
    background: rgba(255, 255, 255, 0.5);
}

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

.feature {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(231, 76, 60, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(231, 76, 60, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    /*background: linear-gradient(45deg, #eecdca, #ec6455);*/
    background: rgba(231, 76, 60, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.feature h3 {
    font-size: 1.5rem;
    color: #E74C3C;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* How it works */
.how-it-works {
    padding: 35px 0;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #E74C3C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    color: #E74C3C;
    margin-bottom: 15px;
    font-weight: 600;
}

.step p {
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E74C3C, #c0392b);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: white;
    color: #E74C3C;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #E74C3C;
}

/* Footer */
footer {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
    border-top: 1px solid rgba(231, 76, 60, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #E74C3C;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: max-content;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        text-align: center;
        justify-content: center;
    }

    .logo h2 {
        font-size: 20px;
    }

    .hero {
        padding: 20px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    #hero-title {
        padding-top: 30px !important;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Plus Code Animation */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.plus-code-demo {
    animation: pulse 3s ease-in-out infinite;
}

.store-buttons {
    display: flex;
    gap: 10px;
    /* espacio entre los botones */
}

/* Botón deshabilitado */
.store-btn.disabled {
    pointer-events: none;
    overflow: hidden;
    border-radius: 8px;
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 12px;
}

/* Solo la imagen con opacidad */
.store-btn.disabled img {
    opacity: 0.6;
    /* semitransparente */
}

/* Texto “Coming Soon” centrado, sin afectar la opacidad */
.store-btn.disabled .coming-soon {
    position: absolute;
    white-space: nowrap;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2px 8px;
    border-radius: 4px;
}

.contact-tooltip {
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: #E74C3C;
}

.contact-tooltip .tooltip-text {
    visibility: hidden;
    width: max-content;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 5px 8px;
    border-radius: 4px;

    /* Positioning */
    position: absolute;
    bottom: 125%;
    /* arriba del link */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;

    /* Fade-in */
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.tooltip-launch {
    background-color: white;
    color: #E74C3C;
    text-align: center;
    padding: 5px 10px;
    font-weight: 600;
    border-radius: 50px;
    /* aspecto pill */
    width: fit-content;
    white-space: pre-line;
    /* se ajusta al texto */
    margin: 0px auto;
    /* centrado horizontal */
    display: flex;
    /* para manejar flex si quieres icono + texto */
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    /* opcional: sombra para tooltip */
}