:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --gold: #eab308;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

#cookieConsent {
    display: none;
}

.nav-link.active {
    color: white;
    background: rgba(255,255,255,0.1);
}

#mainHeader.scrolled {
    background: rgba(15, 36, 64, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

#mainHeader.scrolled .header-logo-text {
    color: white;
}

.wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 1rem;
}

input.wpcf7-form-control,
select.wpcf7-form-control,
textarea.wpcf7-form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    outline: none;
    transition: all 0.3s;
    font-size: 0.875rem;
}

input.wpcf7-form-control:focus,
select.wpcf7-form-control:focus,
textarea.wpcf7-form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

input.wpcf7-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.3);
}

input.wpcf7-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.4);
}

.wpcf7-not-valid-tip {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.wpcf7-validation-errors {
    border-color: #ef4444 !important;
    color: #ef4444 !important;
}

.wpcf7-mail-sent-ok {
    border-color: #22c55e !important;
    color: #16a34a !important;
    background: #f0fdf4;
    padding: 1rem;
    border-radius: 0.75rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

#whatsappFloat {
    animation: pulse-soft 2s ease-in-out infinite;
}

::selection {
    background: var(--primary);
    color: white;
}
