/* ============================================
   SCHICK CRED - ESTILOS PERSONALIZADOS
   ============================================ */

/* ========== RESET E BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #1a1a2e;
    overflow-x: hidden;
    padding-top: 0;
}

html {
    scroll-behavior: smooth;
}

/* ========== UTILITÁRIOS ========== */
.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0a2a4a, #2e86c1);
    border-radius: 4px;
    margin: 12px auto;
}

.backdrop-blur {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.transition-all {
    transition: all 0.3s ease-in-out;
}

/* ========== NAVBAR ========== */
.navbar {
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    letter-spacing: -0.5px;
}

.navbar-brand i {
    font-size: 1.6rem;
}

.nav-link {
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.nav-link i {
    font-size: 1.1rem;
}

/* ========== HERO ========== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section .display-3 {
    line-height: 1.1;
}

/* ========== CARDS DE SERVIÇOS ========== */
.service-card {
    background: white;
    border-radius: 20px !important;
    padding: 30px 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(10, 42, 74, 0.15) !important;
}

.service-card .icon-wrapper {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 42, 74, 0.08);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    background: rgba(10, 42, 74, 0.15);
    transform: scale(1.05);
}

.service-card i {
    font-size: 2.2rem !important;
}

/* ========== BOTÕES ========== */
.btn {
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-lg {
    border-radius: 16px;
}

.btn-warning {
    background: #f1c40f;
    border-color: #f1c40f;
    color: #0a2a4a;
}

.btn-warning:hover {
    background: #f39c12;
    border-color: #f39c12;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(241, 196, 15, 0.4);
}

.btn-primary {
    background: #1a5276;
    border-color: #1a5276;
}

.btn-primary:hover {
    background: #0a2a4a;
    border-color: #0a2a4a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 82, 118, 0.4);
}

.btn-outline-primary {
    color: #1a5276;
    border-color: #1a5276;
}

.btn-outline-primary:hover {
    background: #1a5276;
    border-color: #1a5276;
    color: white;
}

/* ========== FORMULÁRIO ========== */
.form-control {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    padding: 14px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #1a5276;
    box-shadow: 0 0 0 4px rgba(26, 82, 118, 0.15);
}

.form-control-lg {
    padding: 16px 20px;
    font-size: 1.05rem;
}

/* ========== POLÍTICAS E TERMOS ========== */
.policy-content ul,
.terms-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.policy-content ul li,
.terms-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.policy-content .table,
.terms-content .table {
    font-size: 0.95rem;
}

/* ========== ANIMAÇÕES ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

/* ========== RESPONSIVO ========== */
@media (max-width: 992px) {
    .hero-section .display-3 {
        font-size: 2.8rem;
    }
    
    .hero-section {
        min-height: 70vh;
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .hero-section .display-3 {
        font-size: 2.2rem;
    }
    
    .hero-section {
        min-height: 60vh;
        text-align: center;
    }
    
    .hero-section .d-flex {
        justify-content: center !important;
    }
    
    .card.bg-white.bg-opacity-10 {
        margin-top: 30px;
    }
    
    .service-card {
        padding: 24px 16px;
    }
    
    .navbar .container {
        padding: 0 16px;
    }
    
    .policy-content .table,
    .terms-content .table {
        font-size: 0.8rem;
    }
    
    .policy-content .table td,
    .policy-content .table th,
    .terms-content .table td,
    .terms-content .table th {
        padding: 6px 8px;
    }
}

@media (max-width: 576px) {
    .hero-section .display-3 {
        font-size: 1.8rem;
    }
    
    .hero-section .lead {
        font-size: 1rem !important;
    }
    
    .btn-lg {
        padding: 12px 24px !important;
        font-size: 0.95rem;
    }
    
    .card.p-5 {
        padding: 24px !important;
    }
    
    .navbar-brand {
        font-size: 1.2rem !important;
    }
    
    .nav-link {
        padding: 6px 12px !important;
        font-size: 0.9rem;
    }
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0a2a4a, #1a5276);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2e86c1;
}

/* ========== FOOTER ========== */
footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: #f1c40f !important;
    opacity: 1 !important;
}

footer .btn-outline-light {
    border-width: 2px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

footer .btn-outline-light:hover {
    background: #f1c40f;
    border-color: #f1c40f;
    color: #0a2a4a;
    transform: translateY(-3px);
}