/* 
  Santana Express - Modern Design System
  Color Palette: Red, Dark, Gray
  Typography: Inter, Poppins
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;600;700&display=swap');

:root {
    --primary: #d32f2f; /* Image Red */
    --primary-dark: #b71c1c;
    --black: #0B0B0B;
    --dark: #121212;
    --gray: #f9f9f9;
    --white: #ffffff;
    --light-gray: #bdbdbd;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #f8f9fa;
    --text-secondary: #e0e0e0;
    --card-bg: var(--gray);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container: 1100px;
    --section-padding: 100px;
    --h1-mobile: 26px;
    --h2-mobile: 22px;
    --h3-mobile: 20px;
}

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

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.03em; /* Sophisticated tight kerning for headers */
    font-weight: 700;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--text-primary);
    line-height: 1.8; /* Luxurious line height */
    overflow-x: hidden;
    font-size: 14px;
}

h3,
.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem; /* Mobile: 24px padding */
}

section {
    padding: var(--section-padding) 0;
}

/* Typography Utilities */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.mt-3 {
    margin-top: 1.5rem;
}

.section-subtitle {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--black);
    font-weight: 800;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title.light {
    color: var(--white);
}

.mb-5 { margin-bottom: 3rem; }

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
}

/* Button System */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* Botões: full width no mobile */
    min-height: 48px; /* Altura mínima de 48px */
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 0 32px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px; /* Bordas arredondadas */
    font-weight: 600;
    font-size: 1rem;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 14px 24px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    padding: 14px 24px;
    border-radius: 8px;
    color: white;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.hero-whatsapp-btn {
    display: none;
}

@media (min-width: 768px) {
    .hero-whatsapp-btn {
        display: flex;
    }
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: var(--black); /* Fundo escuro */
    transition: var(--transition);
}

header.sticky {
    padding: 12px 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    gap: 2rem;
    padding: 2rem;
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    font-size: 1.3rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

.desktop-only-cta {
    display: none;
}

.mobile-only-btn {
    display: flex;
    width: 100%;
    height: 52px;
    background: #25D366;
    color: white !important;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem !important;
    margin-top: 1rem;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.mobile-menu-btn {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    z-index: 1001;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.2)), url('./images/van.jpg') center/cover no-repeat;
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    z-index: 1;
    text-align: left;
}

.hero-subtitle {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.6;
}

/* BOTÕES */
.hero-buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column; /* Stack buttons on mobile */
    gap: 12px;
}

/* ANIMAÇÃO TEXTO */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

/* KEYFRAMES */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ZOOM FUNDO */
@keyframes zoomBg {
    from {
        transform: scale(1.2);
    }
    to {
        transform: scale(1.05);
    }
}
.services-grid.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.service-card.premium-card {
    background: var(--white);
    padding: 60px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.service-card.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.services-grid.premium-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
    padding: 0 16px; /* Mobile padding */
}

@media (min-width: 768px) {
    .services-grid.premium-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0;
    }
}

.service-card.premium-card {
    background: #ffffff; /* Fundo branco puro */
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); /* Sombra leve */
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon-bg {
    width: 72px;
    height: 72px;
    background: #fff5f5;
    color: #d32f2f; /* Vermelho padrão */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
    font-size: 32px; /* Tamanho fixo 32px */
    flex-shrink: 0;
}

.premium-card h3 {
    color: #111111; /* Título em cor escura */
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.premium-card p {
    color: #444444; /* Textos em cinza escuro */
    font-size: 1rem;
    line-height: 1.6;
    max-width: 260px;
}

/* Stats Section */
.stats-section {
    background: var(--dark);
    padding: 80px 0;
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Diferenciais Section */
.diferenciais-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 col */
    gap: 1.5rem;
    margin-top: 2rem;
}

.diferencial-card {
    background: var(--gray);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.diferencial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.diferencial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(211, 47, 47, 0.15);
}

.diferencial-card:hover::before {
    transform: scaleX(1);
}

.diferencial-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    display: block;
}

.diferencial-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.diferencial-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #000000 100%);
    text-align: center;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: var(--h2-mobile);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

/* About / Fleet */
.split-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 120px 0; /* High whitespace */
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.split-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.split-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.split-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(211, 47, 47, 0.2);
}

.split-image img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Ajustado para mobile sem cortes */
    transition: var(--transition);
    margin: 1rem 0;
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-item i {
    color: var(--primary);
}

/* Fleet Cards */
.fleet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.fleet-card {
    background: var(--dark);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fleet-icon {
    width: 64px;
    height: 64px;
    background: var(--glass);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
}

.fleet-card h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.fleet-card p {
    color: var(--text-secondary);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .diferenciais-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.diferencial-card {
    background: rgba(255,255,255,0.03);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.diferencial-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-5px);
}

.diferencial-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.diferencial-card h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.diferencial-card p {
    color: var(--text-secondary);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--dark);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.stars {
    color: gold;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.testimonial-author {
    font-weight: 600;
    color: var(--white);
}

/* Contact Form */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group-section {
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1.25rem;
    color: #111111;
    margin-bottom: 1.25rem;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 700;
}

.form-group {
    margin-bottom: 16px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 600px) {
    .form-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

/* LABEL */
.form-container label {
    display: block;
    color: #111111;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* INPUTS */
.form-container input,
.form-container select,
.form-container textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    background: #f5f5f5;
    color: #333333;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-container textarea {
    min-height: 100px;
    resize: vertical;
}

/* PLACEHOLDER */
.form-container input::placeholder,
.form-container textarea::placeholder {
    color: #999;
}

/* HOVER & FOCUS */
.form-container input:hover,
.form-container select:hover,
.form-container textarea:hover {
    border-color: #cccccc;
}

.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
    border-color: var(--primary);
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(211,47,47,0.1);
}

/* BOTÃO SUBMIT */
.btn-submit {
    width: 100%;
    height: 52px;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(211,47,47,0.2);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211,47,47,0.3);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 col */
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full {
    grid-column: span 1;
}

textarea {
    height: 150px;
    resize: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background: var(--black);
    padding: 80px 0 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr;
        gap: 60px;
        text-align: left;
    }
}

.footer-logo-text {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer-desc {
        margin: 0;
    }
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

@media (min-width: 768px) {
    .footer-contact-list li {
        justify-content: flex-start;
    }
}

.footer-contact-list i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-contact-list a, .footer-contact-list span {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-contact-list a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-secondary);
}


/* ==========================================================================
   Conversion & Sticky Mobile CTA
   ========================================================================== */

/* Hide sticky/float on desktop */
@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

/* ==========================================================================
   Media Queries (Desktop Refactor)
   ========================================================================== */

@media (min-width: 768px) {
    :root {
        --section-padding: 100px;
    }

    body {
        font-size: 16px;
    }

    .container {
        padding: 0 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .btn {
        width: auto;
        display: inline-flex;
    }

    /* Header Desktop */
    .mobile-menu-btn {
        display: none;
    }

    .nav-links {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        box-shadow: none;
        right: auto;
        display: flex;
        padding: 0;
        gap: 30px;
        backdrop-filter: none;
    }

    .nav-links a {
        font-size: 1rem;
        font-weight: 600;
    }

    .desktop-only-cta {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .mobile-only-btn {
        display: none !important;
    }

    /* Hero Desktop */
    .hero {
        padding: 0 8%;
    }

    .hero-image-mobile {
        display: none;
    }

    .hero h1 {
        font-size: 52px;
        text-align: left;
    }

    .hero p {
        font-size: 1.2rem;
        text-align: left;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .hero-whatsapp-btn {
        display: flex;
    }

    /* Grids Desktop */
    .services-grid, .diferenciais-grid, .fleet-grid, .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .split-section {
        flex-direction: row;
        gap: 4rem;
    }

    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-group.full {
        grid-column: span 2;
    }

    .form-container {
        padding: 40px;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .cta-section h2 {
        font-size: 3.5rem;
    }

    .cta-buttons {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 0 20px;
    }

    .hero-content {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1rem;
        margin: 0 auto 30px;
        max-width: 100%;
    }

    .btn-primary {
        width: 100%;
        max-width: 320px;
        height: 56px;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid.premium-grid {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 60px 0;
    }
}

@media (min-width: 1024px) {
    .services-grid, .diferenciais-grid, .fleet-grid, .testimonials-grid {
        gap: 2.5rem;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* Specific for Safety cards on dark bg */
#seguranca .service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

#seguranca .service-card h3 {
    color: var(--white);
    margin: 15px 0;
}

#seguranca .service-card p {
    color: var(--text-secondary);
}

#seguranca .service-icon {
    font-size: 2.5rem;
    color: var(--primary);
}
