
html {
  box-sizing: border-box;
  overflow-x: hidden;
}


.font-sora {
    font-family: 'Sora', sans-serif;
}


.lead {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.6;
}


.iti { 
    width: 100%; 
}


@media (max-width: 768px) {
    #mobile-menu {
        transition: all 0.3s ease-in-out;
    }
}


.rellax {
    transition: transform 0.5s ease-out;
}


.dot {
    transition: all 0.3s ease;
}

input:checked ~ .dot {
    transform: translateX(100%);
    background-color: white;
}

input:checked + label div:first-child {
    background-color: #F59E0B;
}


.error {
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

input.error, textarea.error {
    border-color: #EF4444;
}


.faq-toggle:focus {
    outline: none;
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-toggle.active i {
    transform: rotate(180deg);
}


.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.bg-gradient-animate {
    background-size: 200% 200%;
    animation: gradientAnimation 5s ease infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.hover-scale {
    transition: transform 0.3s ease;
}

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


@keyframes fillProgress {
    from {
        width: 0;
    }
}

.animate-fill {
    animation: fillProgress 1.5s ease-out forwards;
}


a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid #F59E0B;
    outline-offset: 2px;
}


.solution-cards .bg-white {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-cards .bg-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #F59E0B;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e08e0b;
}


.container {
    overflow-x: hidden;
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .py-20 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .py-16 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

[role="dialog"] {
    animation: fadeIn 0.3s ease;
}

[role="dialog"] > div {
    animation: scaleIn 0.3s ease;
}


@keyframes markerPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

.animate-pulse {
    animation: markerPulse 2s infinite;
}


.prose p {
    margin-bottom: 1.25em;
    line-height: 1.7;
}

.prose h2 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-weight: 700;
    font-size: 1.5em;
    color: #1F2937;
}

.prose h3 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-weight: 600;
    font-size: 1.25em;
    color: #1F2937;
}

.prose ul, .prose ol {
    margin-bottom: 1.25em;
    padding-left: 1.5em;
}

.prose li {
    margin-bottom: 0.5em;
}

.prose a {
    color: #F59E0B;
    text-decoration: underline;
    transition: color 0.2s;
}

.prose a:hover {
    color: #D97706;
}


#cookie-consent {
    transition: transform 0.4s ease-in-out;
}

#cookie-consent.visible {
    transform: translateY(0);
}