:root {
    --primary-red: #FF1E1E;
    --primary-dark: #111111;
    --gradient-red: linear-gradient(135deg, #FF1E1E 0%, #FF4B4B 100%);
    --text-white: #ffffff;
    --text-gray: #CCCCCC;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 48px;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-white);
    line-height: 1.6;
}


.top-banner {
    background: var(--gradient-red);
    color: var(--text-white);
    text-align: center;
    padding: var(--spacing-sm);
    font-size: 14px;
    font-weight: 500;
}

.highlight-text {
    font-weight: 700;
}


.header {
    padding: var(--spacing-md) var(--spacing-xl);
    position: sticky;
    top: 0;
    background: rgba(28, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.nav-container {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 150px
}

.nav-cta {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-red);
}


.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    min-height: 80vh;
    align-items: center;
}

.hero-image {
    width: 90%;
    height: 90%;
    animation: slideInFromRight 1.5s ease-out forwards;
    
    transform: translateX(100%);
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.gradient-text {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: var(--spacing-xl);
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.main-cta {
    background: var(--gradient-red);
    border: none;
    color: var(--text-white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.main-cta:hover {
    transform: translateY(-2px);
}

.arrow {
    transition: transform 0.3s ease;
}

.main-cta:hover .arrow {
    transform: translateX(5px);
}


.carousel-section {
    position: relative;
    width: 50%; 
    margin: auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    transition: transform 1s ease; 
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: auto;
}



body {
    font-family: 'Inter', sans-serif; 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px; 
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
}

.form-container {
    background: rgb(32, 32, 32);
    padding: 40px; 
    border-radius: 12px; 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); 
    max-width: 600px; 
    width: 100%;
}

h2 {
    font-size: 28px; 
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700; 

}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
}

.form-container {
    background: rgb(32, 32, 32);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
}

h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.whatsapp-link-container {
    margin-top: 25px;
}

.whatsapp-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: white;
    font-size: 18px;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.whatsapp-button .whatsapp-icon {
    font-size: 24px; 
    margin-right: 10px; 
    animation: pulse 1.5s infinite; 
}

.whatsapp-button .arrow {
    margin-left: 10px;
    font-size: 20px;
    transition: transform 0.2s;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
    background: #20bd5a;
}

.whatsapp-button:hover .arrow {
    transform: translateX(5px);
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


@media (max-width: 768px) {
    h2 {
        font-size: 24px;
    }

    .form-subtitle {
        font-size: 16px;
    }

    .whatsapp-button {
        font-size: 16px;
        padding: 12px 20px;
    }

    .form-container {
        padding: 30px;
    }
}

.footer {
    background: #0A0A0A;
    padding: var(--spacing-xl) var(--spacing-md);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-lg);
}

.social-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-red);
}

.nav-cta {
    
    background: #E63946;
    color: #FFFFFF !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.25);
    min-width: 180px; 
    white-space: nowrap; 
}


@media (max-width: 768px) {
    .nav-cta {
        padding: 10px 22px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        min-width: 160px;
        border-radius: 25px;
    }
}

@media (max-width: 480px) {
    .nav-cta {
        padding: 8px 18px;
        font-size: 0.75rem;
        min-width: 140px;
        display: block; 
        margin: 0 auto; 
    }

    
    .nav-cta.pulse {
        animation: pulse-mobile 1.5s infinite;
    }
}


.main-cta {
    background: linear-gradient(135deg, #E63946 0%, #D32F3C 100%);
    color: #FFFFFF;
    padding: 16px 40px;
    border-radius: 35px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 18px rgba(230, 57, 70, 0.3);
    text-decoration: none;
    line-height: 1.3;
}


.main-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
    background: linear-gradient(135deg, #D32F3C 0%, #C22532 100%);
}


.main-cta:active {
    transform: translateY(1px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.25);
}


.main-cta:focus {
    outline: 2px solid rgba(49, 48, 48, 0.9);
    outline-offset: 3px;
}


.main-cta .arrow {
    font-size: 1.4em;
    transition: transform 0.3s ease;
}


.main-cta:hover .arrow {
    transform: translateX(4px);
}





@media (max-width: 768px) {
    .main-cta {
        padding: 14px 32px;
        font-size: 1.1rem;
        border-radius: 30px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .main-cta {
        padding: 12px 24px;
        font-size: 1rem;
        letter-spacing: 0.8px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .main-cta .arrow {
        font-size: 1.2em;
    }
}


@keyframes main-pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4); }
    70% { box-shadow: 0 0 0 18px rgba(230, 57, 70, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

.main-cta.pulse {
    animation: main-pulse 2s infinite;
}


@media (hover: none) {
    .main-cta:hover {
        transform: none;
        box-shadow: 0 6px 18px rgba(230, 57, 70, 0.3);
    }
}


@media (hover: hover) {
    .nav-cta:hover {
        background: #D32F3C;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(230, 57, 70, 0.35);
    }
}


@keyframes pulse-mobile {
    0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.3); }
    70% { box-shadow: 0 0 0 8px rgba(230, 57, 70, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}





@media (max-width: 968px) {
   

    .stats-container {
        justify-content: center;
        max-width: 500px;
        margin: 0 auto var(--spacing-xl);
    }

    .main-cta {
        margin: 0 auto;
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .stats-container {
        justify-content: center;
        max-width: 500px;
        margin: 0 auto var(--spacing-xl);
    }

    .main-cta {
        margin: 0 auto;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .input-group {
        grid-template-columns: 1fr;
    }

    .logo {
        max-width: 90px
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
    }

    .method-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {

    .nav-container {
        max-width: 1800px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    

    .hero {
        padding: var(--spacing-md);
    }

    .hero-image {
        max-width: 300px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .top-banner {
        font-size: 12px;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .form-container {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .footer {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
}

@media (max-width: 768px) {
    .carousel-section {
        width: 100%; 
    }

    .carousel-wrapper {
        transition: transform 0.8s ease; 
    }
}


@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}


input:focus,
select:focus,
button:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

.method-card:focus-within {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}


.submit-button.loading {
    opacity: 0.8;
    cursor: not-allowed;
}

.submit-button.loading::after {
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: var(--spacing-sm);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.error {
    border-color: var(--primary-red) !important;
}

.error-message {
    color: var(--primary-red);
    font-size: 0.9rem;
    margin-top: var(--spacing-sm);
    text-align: left;
}

