/* 
   Módulo: styles-components.css
   Descrição: Componentes reutilizáveis (botões, cartões, formulários, ícones).
   Utilizado em: Várias páginas conforme necessário.
   Data da última modificação: 2025-12-23
   Autor: Antigravity
*/

/* --- BUTTONS --- */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50rem;
    font-weight: 600;
    text-transform: none;
    font-family: var(--font-heading);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: white;
}

.btn-whatsapp {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: white;
}

.btn-outline-light:hover {
    color: var(--primary);
}

/* --- CARDS & SERVICES --- */
.card-service {
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    background: var(--bg-surface);
}

.card-service:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.card-service .icon-box {
    width: 4rem;
    height: 4rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.card-service:hover .icon-box {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(3deg);
}

/* --- FEATURES & BENEFITS --- */
.benefit-card {
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.stars {
    color: #FBBF24;
    letter-spacing: 2px;
}

/* --- FLOATING WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1050;
    animation: pulse-green 2s infinite;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    border-radius: 50px;
    padding: 12px 24px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s;
    font-weight: bold;
    text-decoration: none;
}

.whatsapp-float a:hover {
    transform: scale(1.05);
    background: #20BA5A;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- FAQ REDESIGN --- */
.accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 20px;
}

.accordion-header .accordion-button {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1rem !important;
    font-weight: 600;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

.accordion-header .accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3);
}

.accordion-header .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-header .accordion-button:focus {
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.accordion-collapse {
    background: transparent;
}

.accordion-body {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-top: none;
    border-radius: 0 0 1rem 1rem;
    padding: 1.5rem;
    margin-top: -10px;
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

/* --- SPECIAL BADGES & ALERTS --- */
.anti-scam-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.storm-alert {
    background: #FEF2F2;
    border-left: 4px solid var(--danger);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    height: 100%;
    border-radius: 0.5rem;
    padding: 1rem;
}

/* --- LOCATION CARDS --- */
.location-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.location-icon-main {
    width: 3rem;
    height: 3rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    text-align: left;
}

.location-list li span.material-symbols-outlined {
    font-size: 1.25rem;
    color: var(--primary);
    opacity: 0.8;
    flex-shrink: 0;
    width: 1.5rem;
    text-align: center;
}

/* --- SECURITY CARD --- */
.security-card {
    background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #10B981, #34D399);
}

.security-icon-float {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.security-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.security-list li:hover {
    transform: translateX(5px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.05);
}

.security-list .check-icon {
    color: #10B981;
    background: #ECFDF5;
    padding: 0.25rem;
    border-radius: 50%;
}

/* --- FEATURE ITEMS --- */
.feature-item {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-4px) translateX(4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
    background: linear-gradient(to right, #ffffff, var(--bg-surface-alt));
}

.feature-icon-box {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-box {
    background: var(--primary);
    color: white;
    transform: rotate(-10deg);
}

.feature-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.feature-item p {
    max-width: 55ch;
    line-height: 1.6;
}

/* --- VALUES & MISSION --- */
.values-container {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.value-item:hover {
    background: var(--bg-surface-alt);
    transform: translateX(5px);
    border-color: rgba(37, 99, 235, 0.1);
}

.value-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon-box {
    background: var(--primary);
    color: white;
    transform: rotate(5deg);
}

.value-content h5 {
    margin-bottom: 0.25rem;
    font-weight: 700;
    color: var(--secondary);
}

.value-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--text-muted);
}

/* --- PREMIUM UTILITIES --- */
.glass-card-premium {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    box-shadow: var(--premium-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
}

.icon-vibrant {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 16px -4px rgba(37, 99, 235, 0.4);
}

.badge-premium {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.list-premium li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.list-premium li::before {
    content: '\e86c';
    font-family: 'Material Symbols Outlined';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-size: 1.25rem;
}