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

body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Noto Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Android Emoji', 'EmojiSymbols', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo img {
    height: 35px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #667eea;
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white !important;
}

.nav-cta::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.banner-container {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 1200px;
    margin-top: 70px;
    width: 100%;
    overflow: hidden;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

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

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

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px;
    align-items: center;
}

.text-section {
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.logo-text {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
}

.logo-text .deal {
    color: #ff4757;
}

h1 {
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.features {
    list-style: none;
    margin-bottom: 40px;
}

.features li {
    padding: 12px 0;
    font-size: 18px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features li:before {
    content: "✓";
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    border: none;
    cursor: pointer;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.download-btn:active {
    transform: translateY(-1px);
}

.chrome-icon {
    width: 32px;
    height: 32px;
}

.image-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-container {
    position: relative;
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.6s ease;
}

.mockup-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.extension-preview {
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 8px solid #f8f9fa;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    animation: float 3s ease-in-out infinite;
}

.badge-coupons {
    top: 20px;
    right: -20px;
    color: #ff4757;
    font-size: 18px;
}

.badge-rating {
    bottom: 20px;
    left: -20px;
    color: #ffa502;
    font-size: 16px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #667eea;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

/* Features Section */
.features-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 20px;
}

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

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.section-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Browsers Section */
.browsers-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.browsers-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.05;
    border-radius: 50%;
}

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

.browser-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.browser-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.browser-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.browser-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
}

.browser-logo svg {
    width: 100%;
    height: 100%;
    display: block;
}

.browser-name {
    font-size: 20px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 8px;
}

.browser-card p {
    font-size: 14px;
    color: #666;
}

/* Stores Section */
.stores-section {
    background: white;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.stores-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.05;
    border-radius: 50%;
}

.stores-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.stores-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.stores-content h2.visible {
    opacity: 1;
    transform: translateX(0);
}

.stores-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.stores-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.store-stat {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.store-stat.visible {
    opacity: 1;
    transform: scale(1);
}

.store-stat-number {
    font-size: 36px;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.store-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.stores-visual {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.stores-visual.visible {
    opacity: 1;
    transform: translateX(0);
}

.store-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.store-logo-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    transition: all 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

.store-logo-card:nth-child(2) {
    animation-delay: 0.5s;
}

.store-logo-card:nth-child(3) {
    animation-delay: 1s;
}

.store-logo-card:nth-child(4) {
    animation-delay: 1.5s;
}

.store-logo-card:nth-child(5) {
    animation-delay: 2s;
}

.store-logo-card:nth-child(6) {
    animation-delay: 2.5s;
}

.store-logo-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Community Section */
.community-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,122.7C960,139,1056,149,1152,133.3C1248,117,1344,75,1392,53.3L1440,32L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
    background-size: cover;
}

.community-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.community-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.community-content h2.visible {
    opacity: 1;
    transform: translateY(0);
}

.community-content>p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.testimonial-stars {
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.testimonial-author {
    font-weight: 700;
    font-size: 16px;
}

.testimonial-role {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 5px;
}

.cta-box {
    background: white;
    padding: 50px;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
    color: #2c3e50;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.cta-box.visible {
    opacity: 1;
    transform: scale(1);
}

.cta-box h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

@media (max-width: 968px) {

    .banner-content,
    .stores-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }

    h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 36px;
    }

    .description {
        font-size: 18px;
    }

    .mockup-container {
        transform: none;
    }

    .floating-badge {
        display: none;
    }

    .features li {
        justify-content: center;
    }

    .stats {
        justify-content: center;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .store-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .browsers-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Small phones: tighten spacing and avoid clipping */
@media (max-width: 412px) {
    .banner-content {
        padding: 24px;
        gap: 24px;
    }

    .banner-container {
        border-radius: 16px;
        overflow: visible; /* badges are hidden below 968px, avoid clipping text/shadows */
    }

    h1 {
        font-size: 28px;
        line-height: 1.25;
    }

    .description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .features li {
        font-size: 16px;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 18px;
    }

    .stats {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .features-grid,
    .testimonials-grid {
        gap: 20px;
    }

    .store-logos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .browsers-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 30px;
        max-width: 100%;
    }

    .cta-btn {
        padding: 16px 30px;
        font-size: 18px;
    }

    /* Navbar compacta */
    .nav-container {
        padding: 0 16px;
        height: 64px;
    }
    .nav-cta {
        padding: 10px 18px;
        font-size: 14px;
    }

    /* Envoltura de texto para evitar cortes */
    h1,
    .stores-content h2,
    .section-title,
    .description,
    .stores-content p,
    .feature-card p,
    .browser-card p,
    .testimonial-text {
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    /* Ajuste de imagen/mockup */
    .extension-preview {
        max-width: 90vw;
        border-width: 6px;
    }

    /* Secciones: reducir espaciamientos generales */
    .features-section,
    .stores-section,
    .browsers-section,
    .community-section {
        padding: 56px 16px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 14px;
    }
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    /* Stores */
    .stores-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
    }
    .stores-content h2 {
        font-size: 28px;
    }
    .stores-content p {
        font-size: 16px;
        margin-bottom: 18px;
    }
    .stores-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 24px;
    }
    .store-logos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .store-logo-card {
        padding: 20px;
        font-size: 20px;
        border-radius: 12px;
    }

    /* Features grid/cards */
    .features-grid {
        gap: 20px;
        margin-top: 32px;
    }
    .feature-card {
        padding: 24px;
        border-radius: 16px;
    }
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 16px;
    }

    /* Browsers */
    .browsers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .browser-card {
        padding: 24px;
        border-radius: 14px;
    }
    .browser-name {
        font-size: 18px;
    }
    .browser-card p {
        font-size: 13px;
    }
}