/* Reset and Base Styles */
@import url('header.css');
@import url('process.css');
@import url('testimonials.css');
@import url('services.css');
@import url('cta.css');
@import url('benefits.css');
@import url('hero.css');
@import url("modal.css");
@import url("stats.css");
@import url('companys.css');
@import url('footer.css');
@import url('contact.css');

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

html {
    scroll-behavior: smooth;
}
@media screen and (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
body {
    overflow-x: hidden !important;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* CSS Variables */
:root {
    --agence-blue: hsl(203, 100%, 31%);
    --agence-gold: hsl(40, 94%, 59%);
    --agence-light: hsl(180, 20%, 98%);
    --agence-cta: hsl(203, 100%, 50%);
    --text-gray: #6b7280;
    --text-dark: #111827;
    --border-color: #e5e7eb;
    --agence-white: #ffffff;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);


    /* OpticOdds Palette - Add these: */
    --optic-dark-blue: #0B2341;
    --optic-bright-blue: #00A1FF;
    --optic-white: #FFFFFF;
    --optic-light-grey-bg: #F9FAFB;
    --optic-dark-gray-text: #333333;
    --optic-light-gray-text: #6B7280;
    --optic-green-accent: #34C759;
    --optic-red-accent: #FF3B30;
    --optic-darker-bright-blue: #0088D1; /* For button hover */
    --optic-button-outline-hover-bg: #E6F3FF; /* For secondary button hover bg */
}

/* Utility Classes */
.container {
    max-width: 80%;
    margin: 0 auto;    
}

.highlight {
    color: var(--agence-blue);
}
.section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--agence-cta);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-description {
    color: var(--text-gray);
    max-width: 48rem;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--agence-cta);
    color: white;
}

.btn-primary:hover {
    background-color: hsl(203, 100%, 45%);
    transform: translateY(-1px);
}

.btn-large {
    width: max-content;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn i {
    margin-left: 0.5rem;
}
/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: -1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 24rem;
    
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.toast-icon {
    color: #10b981;
    font-size: 1.25rem;
}

.toast-text h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.toast-text p {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
@media (max-width: 1024px) {
    .service-content .panel-image {
        display: none;
    }
    .process-content{
        flex-direction: column;
        align-items: center;
        
    }
    .process .container {
        max-width: 95vw !important;
        margin: 0 auto;
        padding: 0 8vw;
    }
    .process-content {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .process-text {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }
    .process-cta {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .cta-content{
        display: flex;
    }
    .cta-content {
        flex-direction: column !important;
        align-items: center !important;
        width: 100%;
    }
    .cta-text {
        width: 100% !important;
        max-width: 100% !important;
    }
    .cta-action {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 1.5rem;
    }
    .cta-action .btn {
        width: 100%;
        max-width: 320px;
    }
}
    
@media (max-width: 769px) {
    .header-content {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 0;
    }
    .hero-text {
        width: 100% !important;
        max-width: 100% !important;
    }
    .hero-image {
        display: none;
    }
    .services-info{
        display: flex;
    }
    .info-image{
        display: none;
    } 
    .process-content{
        flex-direction: column;
        align-items: center;        
    }
    .process .container {
        max-width: 95vw !important;
        margin: 0 auto;
        padding: 0 8vw;
    }
    .process-content {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .process-text {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    .process-text h2{
        font-size: 1.93rem;
        padding-bottom: 20px;
    }
    .process-cta {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .contact-info {
        display: none !important;
    }
    .contact-container {
        grid-template-columns: 1fr !important;
    }
    .contact-form {
        width: 100% !important;
        padding: 2rem 2.5rem !important;
    }
    .form-row {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.25rem;
    }
    
}

@media (max-width: 375px) {
    .hero-title{
        font-size: 26px;
    }
    .services-bottom{
        margin-top: -6%;
    }
}
@media (max-width: 320px){
    .stats-grid {
        display: none;
    }
    .services-tabs{
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive Design */
@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
    }
    
    .hero-text {
        width: 50%;
    }
    
    .hero-image {
        width: 50%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .header-content {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }    

    .services-info {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-content {
        flex-direction: row;
    }
    
    .process-text {
        width: 50%;
    }
    
    
    .cta-content {
        flex-direction: row;
        text-align: left;
    }
    
    .cta-action .btn {
        width: auto;
    }
    
    .contact-container {
        grid-template-columns: 2fr 3fr;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-brand {
        width: 33.333%;
        padding-right: 4rem;
    }
    
    .footer-links {
        width: 66.667%;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .feature-badge {
        display: flex;
    }    
    .testimonial-nav.prev {
        left: -3rem;
    }
    
    .testimonial-nav.next {
        right: -3rem;
    }
}
/* Smartphones - 1 por linha */
@media (max-width: 425px) {
    .process .container {
        max-width: 90% !important;
        padding: 0 1rem;
    }

    .process-content {
        flex-direction: column;
        width: 100%;
    }

    .process-text {
        width: 100%;
    }

    .process-steps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-image {
        display: none;
    }
    .process-number{
        width: 1.5rem;
        height: 1.21rem;
        border-radius: 50%;
    }
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
}
/* Tablets e telas menores que desktop - 2 por linha */
@media (min-width: 426px) and (max-width: 1024px) {
    .process .container {
        max-width: 100% !important;
        padding: 0 1rem;
    }


    .process-content {
        flex-direction: column;
        width: 100%;
    }

    .process-text {
        width: 100%;
    }

    .process-steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .process-image {
        display: none;
    }
}
/* Print Styles */
@media print {
    .header,
    .whatsapp-btn,
    .toast {
        display: none;
    }    
    .hero,
    .benefits,
    .services,
    .process,
    .testimonials,
    .contact {
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }
}
