@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

:root {
    --red-primary: #dc143c;
    --red-bright: #ff1744;
    --red-dark: #b8122f;
    --red-glow: rgba(220, 20, 60, 0.6);
    --bg-dark: #050505;
    --bg-darker: #000000;
    --text-light: #e0e0e0;
    --text-muted: #888888;
}

html {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-darker);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    width: 100%;
    max-width: 100vw;
    -webkit-tap-highlight-color: transparent;
}

.particles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

@media (max-width: 768px) {
    .particles {
        display: none;
    }
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--red-primary);
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px var(--red-glow);
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 19s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 21s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 17s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4.5s; animation-duration: 23s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1.5s; animation-duration: 18s; }
.particle:nth-child(10) { left: 15%; animation-delay: 3.5s; animation-duration: 20s; }

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px) scale(1);
        opacity: 0;
    }
}

.bg-orbs {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orb-float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--red-primary);
    top: -200px;
    left: -200px;
    animation-duration: 25s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--red-bright);
    bottom: -150px;
    right: -150px;
    animation-duration: 30s;
    animation-delay: -10s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--red-dark);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 35s;
    animation-delay: -15s;
}

@keyframes orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 80px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    touch-action: pan-y;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.left-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    touch-action: pan-y;
    will-change: auto;
}

.brand-wrapper {
    width: 100%;
}

.logo-container {
    margin-bottom: 50px;
}

.logo-hexagon {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0;
    display: inline-block;
}

.hex-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--red-primary), var(--red-bright));
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: hex-rotate 8s linear infinite;
    box-shadow: 0 0 40px var(--red-glow),
                0 0 80px var(--red-glow),
                inset 0 0 40px rgba(255, 255, 255, 0.1);
}

.hex-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: var(--red-primary);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    filter: blur(20px);
    opacity: 0.6;
    z-index: 1;
    animation: hex-glow-pulse 2s ease-in-out infinite;
}

@keyframes hex-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes hex-glow-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

.logo-text {
    font-size: 72px;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    letter-spacing: -2px;
}

.main-title {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -3px;
}

.title-line {
    display: block;
    color: var(--text-light);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--red-primary), var(--red-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 30px var(--red-glow));
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% {
        filter: drop-shadow(0 0 30px var(--red-glow));
    }
    50% {
        filter: drop-shadow(0 0 50px var(--red-glow)) drop-shadow(0 0 80px var(--red-glow));
    }
}

.tagline {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 300;
}

.tagline-text {
    color: var(--text-muted);
    opacity: 0.7;
}

.tagline-accent {
    color: var(--red-primary);
    font-weight: 600;
    text-shadow: 0 0 20px var(--red-glow);
    padding-left: 20px;
    position: relative;
}

.tagline-accent::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--red-primary), var(--red-bright));
    box-shadow: 0 0 10px var(--red-glow);
}

.right-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    touch-action: pan-y;
    will-change: auto;
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(220, 20, 60, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    pointer-events: none;
    user-select: none;
    cursor: default;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(220, 20, 60, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: rgba(220, 20, 60, 0.4);
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.2),
                inset 0 0 60px rgba(220, 20, 60, 0.05);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--red-primary);
    opacity: 0.3;
    min-width: 40px;
    font-feature-settings: 'tnum';
    letter-spacing: 2px;
}

.feature-content {
    flex: 1;
}

.feature-icon-wrapper {
    display: inline-block;
    margin-bottom: 12px;
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.feature-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

.cta-section {
    margin-top: 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4),
                0 0 60px rgba(37, 211, 102, 0.3) !important;
    animation: whatsapp-pulse 3s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4),
                    0 0 60px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6),
                    0 0 80px rgba(37, 211, 102, 0.5);
    }
}

.whatsapp-btn:hover {
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.5),
                0 0 100px rgba(37, 211, 102, 0.4) !important;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 40px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-bright));
    border: none;
    border-radius: 16px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.4),
                0 0 60px rgba(220, 20, 60, 0.3);
    animation: cta-pulse 3s ease-in-out infinite;
    cursor: pointer;
    pointer-events: auto;
    -webkit-user-select: none;
    user-select: none;
    flex: 1;
    min-width: 280px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

@keyframes cta-pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(220, 20, 60, 0.4),
                    0 0 60px rgba(220, 20, 60, 0.3);
    }
    50% {
        box-shadow: 0 15px 50px rgba(220, 20, 60, 0.6),
                    0 0 80px rgba(220, 20, 60, 0.5);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.cta-button:hover::before {
    transform: scale(1);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.5),
                0 0 100px rgba(220, 20, 60, 0.4);
}

.button-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    text-align: left;
    z-index: 2;
    position: relative;
}

.button-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.button-sub {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0.9;
}

.button-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.cta-button:hover .button-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(-10deg) scale(1.1);
}

.button-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover .button-shine {
    left: 100%;
}

@media (max-width: 1200px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 40px;
    }

    .left-section {
        justify-content: center;
        text-align: center;
    }

    .main-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    * {
        transform: none !important;
        -webkit-transform: none !important;
        will-change: auto !important;
        transition: none !important;
        -webkit-transition: none !important;
    }
    
    .container {
        padding: 30px 20px;
        gap: 40px;
        grid-template-columns: 1fr;
        transform: none !important;
        -webkit-transform: none !important;
    }

    .left-section {
        justify-content: center;
        text-align: center;
        transform: none !important;
        -webkit-transform: none !important;
    }

    .right-section {
        transform: none !important;
        -webkit-transform: none !important;
    }
    
    .feature-item,
    .logo-hexagon,
    .title-line,
    .cta-button {
        transform: none !important;
        -webkit-transform: none !important;
        opacity: 1 !important;
    }
    
    .hex-inner {
        animation: none !important;
        transform: none !important;
        -webkit-transform: none !important;
    }
    
    .hex-glow {
        animation: none !important;
    }
    
    .main-title,
    .title-line.highlight {
        animation: none !important;
    }
    
    .cta-button,
    .whatsapp-btn {
        animation: none !important;
    }
    
    .orb {
        animation: none !important;
    }
    
    .particle {
        display: none !important;
    }

    .main-title {
        font-size: 3rem;
    }

    .logo-hexagon {
        width: 100px;
        height: 100px;
    }

    .logo-text {
        font-size: 50px;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        padding: 20px 30px;
        flex-direction: column;
        align-items: flex-start;
        min-width: 100%;
        width: 100%;
    }

    .button-main {
        font-size: 1.2rem;
    }

    .button-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .button-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
        gap: 30px;
    }

    .main-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .logo-hexagon {
        width: 80px;
        height: 80px;
    }

    .logo-text {
        font-size: 40px;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .feature-item {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .feature-number {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-desc {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 18px 20px;
        min-width: 100%;
    }

    .button-main {
        font-size: 1rem;
    }

    .button-sub {
        font-size: 0.8rem;
    }
}