/* ===== VARIÁVEIS DE CORES (TEMA ESCURO) ===== */
:root {
    /* Cores Principais */
    --primary-color: #0A192F; /* Azul Marinho Escuro - Fundo principal */
    --secondary-color: #64FFDA; /* Verde Água - CTAs e destaques */
    --accent-color: #FF6B6B; /* Coral - Botões de emergência */
    
    /* Cores de Texto */
    --text-color: #CCD6F6; /* Cinza Claro - Texto principal */
    --text-secondary: #8892B0; /* Cinza Médio - Texto secundário */
    --text-light: #FFFFFF; /* Branco - Texto em fundos escuros */
    
    /* Cores de Fundo */
    --bg-primary: #0A192F; /* Fundo principal escuro */
    --bg-secondary: #112240; /* Fundo de seções alternadas */
    --bg-card: #1A2332; /* Fundo de cards */
    --bg-overlay: rgba(10, 25, 47, 0.9); /* Overlay escuro */
    
    /* Tipografia */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    
    /* Efeitos */
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --box-shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.4);
    --border-radius: 8px;
    --border-color: rgba(100, 255, 218, 0.2);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-primary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--text-light);
}

p {
    margin-bottom: 15px;
    font-size: 1rem;
}

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

a:hover {
    color: #FFFFFF;
}

ul {
    list-style: none;
}

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

/* ===== SEÇÕES ===== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--text-light);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.9rem;
    min-height: 50px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #4ECDC4);
    color: var(--bg-primary);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--


secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.btn-service {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    width: 100%;
    margin-top: 15px;
    font-size: 0.85rem;
    padding: 12px 20px;
}

.btn-service:hover {
    background: var(--secondary-color);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.btn-emergency {
    background: linear-gradient(135deg, var(--accent-color), #FF5252);
    color: var(--text-light);
    font-size: 1rem;
    padding: 16px 24px;
    width: 100%;
    font-weight: 700;
    border-color: var(--accent-color);
}

.btn-emergency:hover {
    background: linear-gradient(135deg, #FFFFFF, var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* ===== BOTÃO WHATSAPP FIXO ===== */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #25D366, #1DA851);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-button i {
    font-size: 1.6rem;
    margin-right: 10px;
}

.whatsapp-button span {
    font-weight: 600;
    font-size: 0.9rem;
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #1DA851, #25D366);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

/* ===== HEADER ===== */
.header {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo img {
    max-height: 50px;
    width: auto;
    filter: brightness(1.2);
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    font-size: 1rem;
    padding: 8px 0;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-cta .phone-button {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-color), #FF5252);
    color: white;
    padding: 10px 18px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
}

.header-cta .phone-button i {
    margin-right: 8px;
}

.header-cta .phone-button:hover {
    background: linear-gradient(135deg, #FF5252, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-light);
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(100, 255, 218, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 420px;          /* limita um pouco no desktop */
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
    border: 3px solid var(--border-color);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--text-light), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 35px;
    font-family: var(--font-secondary);
    color: var(--text-secondary);
    line-height: 1.5;
}

.hero-cta {
    margin-top: 35px;
}

.emergency {
    display: flex;
    align-items: center;
    margin-top: 25px;
    font-weight: 500;
    color: var(--text-secondary);
}

.emergency i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 1.3rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--bg-secondary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 10%, rgba(100, 255, 218, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--secondary-color);
}

.service-card.highlight {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, var(--bg-card), rgba(100, 255, 218, 0.05));
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    text-align: center;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    text-align: center;
    color: var(--text-light);
}

.service-card p {
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--bg-primary);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    max-width: 100%;
    border: 2px solid var(--border-color);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--text-light), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    color: var(--text-light);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(100, 255, 218, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials .section-header {
    position: relative;
    z-index: 1;
}

.testimonials .section-header h2 {
    color: var(--text-light);
}

.testimonials .section-header p {
    color: var(--text-secondary);
}

.testimonials .section-header h2::after {
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.testimonial-item {
    background: rgba(26, 35, 50, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto 40px;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    padding: 0 30px;
    color: var(--text-color);
    line-height: 1.7;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 3rem;
    position: absolute;
    color: var(--secondary-color);
    opacity: 0.6;
}

.testimonial-content p::before {
    left: 0;
    top: -15px;
}

.testimonial-content p::after {
    right: 0;
    bottom: -25px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.testimonial-author .name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-light);
}

.testimonial-author .case {
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--bg-secondary);
}

.contact-content {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    margin-bottom: 40px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-right: 25px;
    width: 50px;
    height: 50px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--border-color);
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

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

.info-content a {
    color: var(--secondary-color);
    font-weight: 500;
}

.info-content a:hover {
    color: var(--accent-color);
}

.phone-inline {
    display: flex;
    align-items: center;
    gap: 18px; /* mais espaçamento entre número e botão */
    margin-top: 6px;
    flex-wrap: wrap; /* mobile não quebra feio */
}

/* Número */
.phone-inline .phone-number {
    font-size: 1.15rem;
    font-weight: 500;
    color: #7FFFD4;
    text-decoration: none;
}

.phone-inline .phone-number:hover {
    opacity: .85;
}

/* Botão padrão menor e proporcional */
.phone-inline .btn-phone {
    padding: 10px 22px;
    border: 2px solid #7FFFD4;
    border-radius: 10px;
    background: transparent;
    color: #7FFFD4;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s ease;
    cursor: pointer;
}

.phone-inline .btn-phone i {
    font-size: 1rem;
    margin-right: 4px;
}

/* Hover */
.phone-inline .btn-phone:hover {
    background: rgba(127, 255, 212, 0.15);
    transform: translateY(-2px);
}

/* MOBILE — ficar empilhado bonitinho */
@media (max-width: 520px) {
    .phone-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .phone-inline .btn-phone {
        width: 100%;
        justify-content: center;
    }
}

.cta-emergency {
    margin: 40px 0 20px;
}

.emergency-text {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1rem;
}

.map {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 2px solid var(--border-color);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-primary);
    color: var(--text-light);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
}

.footer-logo img {
    margin-bottom: 20px;
    max-width: 150px;
    filter: brightness(1.2);
}

.footer-logo p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-contact {
    flex: 1;
}

.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    color: var(--text-light);
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-contact p i {
    margin-right: 12px;
    color: var(--secondary-color);
    width: 20px;
}

.footer-contact a {
    color: var(--text-secondary);
    font-weight: 500;
}

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

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

.footer-bottom p {
    margin-bottom: 8px;
}

/* ===== BOTÃO EMERGÊNCIA MOBILE ===== */
.emergency-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    padding: 15px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 99;
    display: none;
    border-top: 2px solid var(--border-color);
}

/* ===== MEDIA QUERIES - RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .about-content,
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-image {
        margin-top: 10px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        border-radius: 18px;
    }
    
    .about-image {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .about-image img {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .stats {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0;
        min-height: 70vh;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        z-index: 200;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        backdrop-filter: blur(10px);
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .main-nav li {
        margin: 0;
    }
    
    .main-nav a {
        color: var(--text-light);
        font-size: 1.3rem;
        padding: 15px 30px;
        border-radius: var(--border-radius);
        border: 1px solid var(--border-color);
        transition: var(--transition);
    }
    
    .main-nav a:hover {
        background: var(--secondary-color);
        color: var(--bg-primary);
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 201;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .header-cta {
        display: none;
    }
    
    .hero {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .about-text h3 {
        font-size: 1.7rem;
    }
    
    .testimonial-item {
        padding: 30px 25px;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .whatsapp-button {
        bottom: 90px;
        right: 15px;
    }
    
    .whatsapp-button span {
        display: none;
    }
    
    .whatsapp-button {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .whatsapp-button i {
        margin-right: 0;
        font-size: 2rem;
    }
    
    .emergency-mobile-cta {
        display: block;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-image {
        max-width: 260px;
    }

    .hero-image img {
        height: 260px;
    }
    
    .service-icon {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .stats {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-info,
    .testimonial-item {
        padding: 25px 20px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .whatsapp-button {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-button i {
        font-size: 1.8rem;
    }
}

