@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ==========================================
   CONFIGURAÇÕES GERAIS E VARIÁVEIS
   ========================================== */
:root {
    /* Cores */
    --bg-dark-primary: #080808;
    --bg-dark-secondary: #121212;
    --bg-dark-tertiary: #1a1a1a;
    
    --color-gold-primary: #FFB300;
    --color-gold-secondary: #FFC107;
    --color-gold-dark: #cc8f00;
    
    --color-silver-light: #F3F4F6;
    --color-silver-medium: #D1D5DB;
    --color-silver-dark: #9CA3AF;
    
    --color-white: #FFFFFF;
    --color-whatsapp: #25D366;
    
    /* Gradientes */
    --gradient-gold: linear-gradient(135deg, var(--color-gold-secondary) 0%, var(--color-gold-primary) 100%);
    --gradient-silver: linear-gradient(135deg, var(--color-white) 0%, var(--color-silver-medium) 50%, var(--color-silver-dark) 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-dark-primary) 0%, var(--bg-dark-secondary) 100%);
    --gradient-card: linear-gradient(145deg, #161616 0%, #0c0c0c 100%);
    
    /* Tipografia */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Sombras e Efeitos */
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 15px rgba(255, 179, 0, 0.4);
    --shadow-whatsapp: 0 0 15px rgba(37, 211, 102, 0.4);
    --border-premium: 1px solid rgba(255, 255, 255, 0.05);
    --border-gold-accent: 1px solid rgba(255, 179, 0, 0.2);
    --border-silver-accent: 1px solid rgba(209, 213, 219, 0.2);
    
    /* Transições */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset de Estilos */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark-primary);
    color: var(--color-silver-medium);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-silver-light);
    font-weight: 700;
    line-height: 1.2;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 0.5rem;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--bg-dark-primary);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 179, 0, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--color-silver-light);
    border: 1.5px solid var(--color-silver-medium);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    box-shadow: var(--shadow-whatsapp);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

.btn-phone {
    background-color: var(--bg-dark-tertiary);
    color: var(--color-gold-primary);
    border: 1.5px solid var(--color-gold-primary);
}

.btn-phone:hover {
    background-color: var(--color-gold-primary);
    color: var(--bg-dark-primary);
    transform: translateY(-3px);
}

/* ==========================================
   MENU DE NAVEGAÇÃO (HEADER)
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: rgba(8, 8, 8, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: var(--transition-smooth);
}

.header.scrolled .navbar {
    height: 75px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
    height: 60px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-silver-medium);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-gold-secondary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
}

/* Hambúrguer Menu Mobile */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition-smooth);
    background-color: var(--color-silver-light);
    border-radius: 2px;
}

/* ==========================================
   SEÇÃO HERO (PRINCIPAL)
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    background-image: linear-gradient(rgba(8, 8, 8, 0.75), rgba(8, 8, 8, 0.95)), url('assets/tow_truck_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-dark-primary), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 179, 0, 0.1);
    color: var(--color-gold-secondary);
    border: var(--border-gold-accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    gap: 0.5rem;
}

.hero-badge i {
    color: var(--color-gold-primary);
    animation: pulse-ring 1.5s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--color-white) 30%, var(--color-silver-medium) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--color-silver-dark);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--color-gold-secondary);
    font-weight: 800;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--color-silver-dark);
    font-weight: 500;
}

/* ==========================================
   BARRA DE URGÊNCIA (EMERGENCY BAR)
   ========================================== */
.emergency-bar {
    background-color: var(--bg-dark-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.5rem 0;
    position: relative;
    z-index: 10;
}

.emergency-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.emergency-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.emergency-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 179, 0, 0.1);
    border: var(--border-gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-secondary);
    font-size: 1.5rem;
    animation: shake 2s infinite;
}

.emergency-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.15rem;
}

.emergency-text p {
    font-size: 0.9rem;
    color: var(--color-silver-dark);
}

.emergency-actions {
    display: flex;
    gap: 1rem;
}

/* ==========================================
   SEÇÕES EM GERAL (LAYOUT)
   ========================================== */
.section {
    padding: 100px 0;
}

.section-alt {
    background-color: var(--bg-dark-secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-subtitle {
    color: var(--color-gold-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-silver-medium) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--color-silver-dark);
    font-size: 1.05rem;
}

/* ==========================================
   DIFERENCIAIS (WHY US)
   ========================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    background: var(--gradient-card);
    border: var(--border-premium);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 179, 0, 0.3);
    box-shadow: var(--shadow-premium);
}

.why-icon {
    width: 65px;
    height: 65px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--color-gold-secondary);
    font-size: 1.8rem;
    transition: var(--transition-smooth);
    border: var(--border-premium);
}

.why-card:hover .why-icon {
    background-color: var(--color-gold-primary);
    color: var(--bg-dark-primary);
    box-shadow: var(--shadow-gold);
    transform: rotateY(360deg);
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--color-silver-dark);
}

/* ==========================================
   QUEM SOMOS (Nossa História)
   ========================================== */
.about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--color-silver-medium);
    text-align: justify;
}

.about-quote {
    border-left: 4px solid var(--color-gold-primary);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--color-silver-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: var(--border-premium);
    box-shadow: var(--shadow-premium);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-gold);
    color: var(--bg-dark-primary);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-premium), var(--shadow-gold);
    text-align: center;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-badge .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.about-badge .label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

/* ==========================================
   SERVIÇOS
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--gradient-card);
    border: var(--border-premium);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 179, 0, 0.25);
    box-shadow: var(--shadow-premium);
}

.service-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(18, 18, 18, 1), transparent);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-icon-floating {
    position: absolute;
    bottom: 15px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--color-gold-primary);
    color: var(--bg-dark-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 2;
    box-shadow: var(--shadow-gold);
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-desc {
    color: var(--color-silver-dark);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-silver-medium);
    margin-bottom: 0.5rem;
}

.service-features li i {
    color: var(--color-gold-secondary);
}

.service-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.2rem;
}

.service-price-tag {
    font-size: 0.8rem;
    color: var(--color-silver-dark);
    font-weight: 500;
}

.service-price-tag span {
    display: block;
    color: var(--color-gold-secondary);
    font-size: 1rem;
    font-weight: 700;
}

.service-link {
    color: var(--color-gold-primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.service-link:hover {
    color: var(--color-white);
}

/* ==========================================
   ÁREA DE ATUAÇÃO
   ========================================== */
.map-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
}

.map-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.map-info p {
    color: var(--color-silver-dark);
    margin-bottom: 2rem;
}

.cities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-premium);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.city-item:hover {
    background: rgba(255, 179, 0, 0.05);
    border-color: rgba(255, 179, 0, 0.2);
    transform: translateX(5px);
}

.city-item i {
    color: var(--color-gold-secondary);
}

.map-visual {
    background: var(--gradient-card);
    border: var(--border-premium);
    border-radius: 20px;
    padding: 1.5rem;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-premium);
}

.map-graphic {
    width: 100%;
    height: 100%;
    max-height: 300px;
    opacity: 0.8;
}

/* ==========================================
   DEPOIMENTOS (TESTIMONIALS)
   ========================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--gradient-card);
    border: var(--border-premium);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-quote-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2.5rem;
    color: rgba(255, 179, 0, 0.05);
}

.rating {
    color: var(--color-gold-secondary);
    margin-bottom: 1.2rem;
    display: flex;
    gap: 0.2rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--color-silver-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.2rem;
}

.author-avatar {
    width: 48px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-dark-tertiary);
    border: var(--border-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-gold-secondary);
}

.author-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--color-silver-dark);
}

/* ==========================================
   CONTATO & FORMULÁRIO
   ========================================== */
.contact-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-channels {
    margin-top: 2rem;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-premium);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.channel-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.channel-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-secondary);
    font-size: 1.3rem;
    border: var(--border-premium);
}

.channel-card:hover .channel-icon {
    background-color: var(--color-gold-primary);
    color: var(--bg-dark-primary);
    box-shadow: var(--shadow-gold);
}

.channel-text h4 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.channel-text p {
    font-size: 0.9rem;
    color: var(--color-silver-dark);
}

.contact-form-panel {
    background: var(--gradient-card);
    border: var(--border-premium);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-premium);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-silver-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.form-control {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold-primary);
    box-shadow: 0 0 10px rgba(255, 179, 0, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================
   RODAPÉ (FOOTER)
   ========================================== */
.footer {
    background-color: #040404;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 80px 0 30px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .logo-img {
    height: 70px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--color-silver-dark);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-dark-tertiary);
    border: var(--border-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-silver-medium);
}

.social-link:hover {
    background-color: var(--color-gold-primary);
    color: var(--bg-dark-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.footer-column h4 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-gold-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-silver-dark);
}

.footer-links a:hover {
    color: var(--color-gold-secondary);
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--color-silver-dark);
    margin-bottom: 1rem;
}

.footer-contact-list li i {
    color: var(--color-gold-secondary);
    margin-top: 0.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-silver-dark);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a:hover {
    color: var(--color-silver-light);
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), var(--shadow-whatsapp);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulse-ring-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* ==========================================
   MICRO-ANIMAÇÕES (KEYFRAMES)
   ========================================== */
@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 179, 0, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 179, 0, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 179, 0, 0);
    }
}

@keyframes pulse-ring-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-5deg); }
    20%, 40%, 60%, 80% { transform: rotate(5deg); }
}

/* ==========================================
   RESPONSIVIDADE (MOBILE-FIRST)
   ========================================== */

/* Telas até 992px */
@media (max-width: 992px) {
    .navbar {
        height: 90px;
    }
    .hamburger {
        display: block;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--bg-dark-secondary);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        padding: 3rem 0;
        gap: 2.5rem;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-cta {
        display: none; /* Cta vai para dentro do menu ou vira botão emergencial */
    }
    
    .hero {
        padding-top: 120px;
        text-align: center;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-stats {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    .about-badge {
        right: 0px;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Telas até 768px */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .emergency-container {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .emergency-info {
        flex-direction: column;
    }
    .emergency-actions {
        flex-direction: column;
    }
    .emergency-actions .btn {
        width: 100%;
    }
    .cities-list {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Telas até 480px */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .contact-form-panel {
        padding: 1.5rem;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

/* ==========================================
   MISSÃO, VISÃO E VALORES
   ========================================== */
.mvs-grid {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 4rem;
}

.mvs-card {
    background: var(--gradient-card);
    border: var(--border-premium);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
}

.mvs-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 179, 0, 0.2);
    box-shadow: var(--shadow-premium);
}

.mvs-icon {
    color: var(--color-gold-primary);
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.mvs-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.mvs-card p {
    font-size: 0.95rem;
    color: var(--color-silver-dark);
    line-height: 1.6;
}

.mvs-values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mvs-values-list li {
    font-size: 0.9rem;
    color: var(--color-silver-dark);
}

.mvs-values-list li strong {
    color: var(--color-silver-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.15rem;
}

.mvs-values-list li i {
    color: var(--color-gold-secondary);
}

/* ==========================================
   DICAS DE SEGURANÇA (ENQUANTO AGUARDA)
   ========================================== */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.safety-card {
    background: var(--gradient-card);
    border: var(--border-premium);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.safety-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 179, 0, 0.25);
    box-shadow: var(--shadow-premium);
}

.safety-num {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 179, 0, 0.04);
    line-height: 1;
    transition: var(--transition-smooth);
}

.safety-card:hover .safety-num {
    color: rgba(255, 179, 0, 0.1);
    transform: scale(1.1);
}

.safety-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    padding-right: 2rem;
}

.safety-card p {
    font-size: 0.9rem;
    color: var(--color-silver-dark);
    line-height: 1.6;
}

/* Responsividade MVS */
@media (max-width: 992px) {
    .mvs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
        padding-top: 2.5rem;
    }
}
