﻿/* ============================================
   VARIÁVEIS - Smart Help Design
   ============================================ */
:root {
    --primary: #001a4d;
    --primary-light: #002966;
    --accent: #00d4ff;
    --accent-bright: #00ff99;
    --danger: #ff3333;
    --white: #ffffff;
    --gray-light: #f0f0f0;
    --gray-medium: #e0e0e0;
    --gray-dark: #333333;
    --text: #222222;
    --text-light: #666666;
}

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

html {
    scroll-behavior: smooth;
    font-display: swap;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.mono {
    font-family: 'Space Mono', 'IBM Plex Mono', monospace;
    font-weight: 600;
}

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

/* ============================================
   HEADER - MINIMALISTA E DIRETO
   ============================================ */
.header {
    background: var(--primary);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.1);
}

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

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 0 0 auto;
}

.logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
}

.header-tagline {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 900;
    text-align: center;
    flex: 1;
    display: none;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.header-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon:hover {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

/* Cores das Redes Sociais */
.social-instagram {
    border-color: #E4405F;
    color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
}

.social-instagram:hover {
    background: #E4405F;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(228, 64, 95, 0.4);
}

.social-facebook {
    border-color: #1877F2;
    color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
}

.social-facebook:hover {
    background: #1877F2;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.social-whatsapp {
    border-color: #25D366;
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.social-whatsapp:hover {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.header-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(0, 212, 255, 0.05);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 0;
    margin-top: 15px;
    flex-wrap: wrap;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    flex: 1;
    min-width: 120px;
    text-align: center;
    position: relative;
}

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

/* Cores dos ícones */
.icon-tools {
    color: #a8a8a8;
}

.icon-star {
    color: #ffd700;
}

.icon-info {
    color: #00d4ff;
}

.icon-location {
    color: #ff3333;
}

.nav-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-bottom-color: var(--accent);
    transform: translateY(-2px);
}

.nav-item:active {
    background: rgba(0, 212, 255, 0.15);
    border-bottom-color: var(--accent-bright);
}

/* ============================================
   HERO - TIMER E URGENCIA
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #000d26 100%);
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

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

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

.hero-timer {
    margin-bottom: 40px;
    animation: pulse 2s ease-in-out infinite;
}

.timer-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 20px;
}

.timer-number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent-bright);
    text-shadow: 0 0 30px rgba(0, 255, 153, 0.5);
    line-height: 1;
}

.timer-unit {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-brand {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #00d4ff;
    text-align: center;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    opacity: 0.9;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff99 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.2));
    letter-spacing: -1px;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.2)); }
    50% { filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.4)); }
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--accent-bright);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-light);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    animation: slideInUp 0.6s ease-out;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent-bright);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BOTÕES
   ============================================ */
.btn {
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 255, 153, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-4px);
}

.btn-service {
    background: transparent;
    color: #25d366;
    border: 2px solid #25d366;
    padding: 12px 24px;
    font-size: 0.95rem;
}

.btn-service:hover {
    background: #25d366;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-service i {
    margin-right: 6px;
}


.service-card .btn-service{
    margin-top: auto;
    align-self: center;
    min-width: 210px;
    justify-content: center;
}

@media (max-width: 480px){
    .service-card .btn-service{
        width: 100%;
        min-width: 0;
    }
}

/* ============================================
   SEÇÃO: COMO FUNCIONA
   ============================================ */
.how-it-works {
    padding: 100px 20px;
    background: var(--gray-light);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
    width: 100%;
    text-shadow: 
        2px 2px 0 rgba(0, 212, 255, 0.3),
        4px 4px 0 rgba(0, 212, 255, 0.2),
        6px 6px 0 rgba(0, 212, 255, 0.1);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 212, 255, 0.1);
    animation: fadeInScale 0.6s ease-out;
}

.step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.3);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    color: var(--primary);
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.step-arrow {
    font-size: 2rem;
    color: var(--accent);
    display: none;
}

@media (min-width: 768px) {
    .step-arrow {
        display: block;
    }
}

/* ============================================
   SEÇÃO: SERVIÇOS RÁPIDOS
   ============================================ */
.quick-services {
    padding: 100px 20px;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.2);
}

.service-card.emergency {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 255, 153, 0.05) 100%);
    border: 2px solid var(--accent);
}

.service-badge {
    display: inline-block;
    background: var(--danger);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 15px;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.service-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-time {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-bright);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-schedule-service {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    color: var(--primary);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-schedule-service:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 255, 153, 0.3);
}

/* ============================================
   SEÇÃO: POR QUE SOMOS RÁPIDOS
   ============================================ */
.why-fast {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #000d26 100%);
    color: var(--white);
}

.why-fast .section-title {
    color: var(--accent-bright);
}

.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.advantage {
    text-align: center;
}

.advantage-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.advantage h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--accent-bright);
}

.advantage p {
    color: var(--gray-light);
}

/* ============================================
   SEÇÃO: AGENDAMENTO
   ============================================ */
.booking {
    padding: 100px 20px;
    background: var(--gray-light);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.booking-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-medium);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.info-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-light);
    margin: 0;
}

.info-item a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}

.booking-form {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-whatsapp-circular {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #25d366;
    background: rgba(37, 211, 102, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #25d366;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-circular:hover {
    background: rgba(37, 211, 102, 0.2);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transform: scale(1.05);
}

.booking-note {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--accent-bright);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--gray-light);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-section a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
}

.footer-bottom p {
    margin: 5px 0;
}

/* ============================================
   RESPONSIVIDADE - DESKTOP
   ============================================ */
@media (min-width: 1024px) {
    .logo {
        height: 200px;
    }

    .header {
        padding: 20px 0;
    }

    .header-tagline {
        display: block;
    }
}

/* ============================================
   RESPONSIVIDADE - TABLET
   ============================================ */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 12px;
    }

    .header-tagline {
        font-size: 1.2rem;
    }

    .header-social {
        gap: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .header-nav {
        margin-top: 10px;
    }

    .nav-item {
        padding: 10px 12px;
        font-size: 0.75rem;
        min-width: auto;
        flex-direction: column;
        gap: 4px;
    }

    .nav-item span {
        display: block;
    }

    .nav-item i {
        font-size: 1.2rem;
    }

    .hero-timer {
        margin-bottom: 30px;
    }

    .timer-number {
        font-size: 3.5rem;
    }

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

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

    .hero-features {
        gap: 20px;
        flex-direction: column;
    }

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

    .btn, .btn-large {
        width: 100%;
        justify-content: center;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 480px) {
    .header-nav {
        margin-top: 8px;
    }

    .nav-item {
        padding: 8px 10px;
        font-size: 0.7rem;
        min-width: auto;
        flex-direction: column;
        gap: 3px;
    }

    .nav-item span {
        display: block;
        white-space: nowrap;
    }

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

    .logo {
        height: 150px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-tagline {
        font-size: 0.65rem;
    }

    .timer-number {
        font-size: 2.5rem;
    }

    .timer-unit {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

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

    .feature-item {
        font-size: 0.85rem;
    }

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

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

.btn-whatsapp-circular-hero {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #25d366;
    background: rgba(37, 211, 102, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #25d366;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    margin: 30px auto 0;
}

.btn-whatsapp-circular-hero:hover {
    background: rgba(37, 211, 102, 0.2);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transform: scale(1.05);
}

.btn-whatsapp-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border: 2px solid #25d366;
    border-radius: 8px;
    background: transparent;
    color: #25d366;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 30px auto 0;
    cursor: pointer;
}

.btn-whatsapp-hero i {
    font-size: 1.3rem;
}

.btn-whatsapp-hero:hover {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.hero-cta-text {
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
    margin-top: 15px;
    line-height: 1.5;
}


.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social-icon:hover {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
}


/* ============================================
   SEÇÃO DE AVALIAÇÕES COM CARROSSEL
   ============================================ */
.testimonials {
    background: var(--primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-carousel {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    overflow: hidden;
}


.testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.stars i {
    color: #ffc107;
}

.testimonial-text {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-date {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.9rem;
    margin-left: 5px;
}

.testimonial-link {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-link:hover .testimonial-content {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--accent-bright);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.testimonial-verify {
    color: var(--accent-bright);
    font-size: 0.9rem;
    margin-top: 15px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-link:hover .testimonial-verify {
    opacity: 1;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--accent);
    border-color: var(--white);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}


.indicator:hover {
    background: rgba(0, 212, 255, 0.6);
}

/* Responsividade para Avaliações */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-carousel {
        height: auto;
        min-height: 250px;
    }

    .testimonial-content {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .stars {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 40px 0;
    }

    .testimonials-carousel {
        min-height: 200px;
    }

    .testimonial-content {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .stars {
        font-size: 1rem;
    }

    .testimonial-author {
        font-size: 0.9rem;
    }
}


@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===========================
   Avaliações (estrutura nova)
   =========================== */
.reviews{
  padding: 80px 0;
  background: #001b3a; /* mantém padrão escuro do site */
}

.reviews .section-title,
.reviews .section-subtitle{
  color: #ffffff;
}

.reviews__viewport{
  position: relative;
  max-width: 920px;
  margin: 28px auto 0;
  min-height: 260px;
}

.review{
  position: absolute;
  inset: 0;
  display: none;
}

.review.is-active{
  display: block;
}

.review__link{
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.review{
  padding: 28px 28px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  box-sizing: border-box;

  /* centraliza conteúdo e evita “vazio” visual */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review__text{
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 18px;
}

.review__rating{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.review__stars{
  display: inline-flex;
  gap: 6px;
}

.review__stars svg{
  width: 26px;
  height: 26px;
  fill: #ffc107; /* amarelo das estrelas */
}

.review__score{
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
}

.review__meta{
  color: #ffffff;
  opacity: 0.92;
  margin: 0;
  font-weight: 500;
}

/* bolinhas */
.reviews__dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.reviews__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
}

.reviews__dot.is-active{
  background: #00d4ff;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.55);
}

/* CTA */
.reviews__cta{
  display:flex;
  justify-content:center;
  margin-top: 18px;
}

.reviews__btn{
  display:inline-block;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.18);
  border: 1px solid rgba(0, 212, 255, 0.35);
  color: #ffffff;
  text-decoration:none;
  font-weight: 600;
}
.reviews__btn:hover{
  background: rgba(0, 212, 255, 0.26);
}


/* ===== HOTFIX: Carrossel avaliações - garante troca pelas bolinhas ===== */
#avaliacoes .review{ display:none !important; }
#avaliacoes .review.is-active{ display:flex !important; }

#avaliacoes .review.is-active{
  flex-direction: column;
  justify-content: center;
}



/* ===== HOTFIX: seção 'Por Que Somos Rápidos' - texto descritivo mais escuro ===== */
#sobre .advantage p{
    color: var(--text-light) !important; /* mesmo tom do .section-subtitle */
}


/* ===== AÇÕES RÁPIDAS (Ads PRO) - WhatsApp flutuante + barra mobile ===== */
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Botão WhatsApp flutuante */
.fab-whatsapp{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  transition: transform .15s ease, box-shadow .15s ease;
}
.fab-whatsapp i{ font-size: 1.6rem; }
.fab-whatsapp:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.32);
}

/* Barra fixa no mobile (WhatsApp + Ligar) */
.mobile-actionbar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none; /* só mobile */
  gap: 10px;
  padding: 10px 12px;
  background: rgba(0, 26, 77, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.14);
  z-index: 9998;
}
.mobile-actionbar .bar-btn{
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
}
.mobile-actionbar .bar-whatsapp{
  background: rgba(37, 211, 102, 0.20);
  border-color: rgba(37, 211, 102, 0.55);
}
.mobile-actionbar .bar-call{
  background: rgba(0, 212, 255, 0.16);
  border-color: rgba(0, 212, 255, 0.45);
}

/* No mobile, abre espaço para não cobrir conteúdo */
@media (max-width: 768px){
  .mobile-actionbar{ display:flex; }
  body{ padding-bottom: 76px; }
  /* no mobile, deixa o botão flutuante acima da barra */
  .fab-whatsapp{ bottom: 92px; }
}

/* ===== FIX AVALIAÇÕES (MOBILE) - estrelas gigantes/pretas + alinhamento ===== */
/* Garante cor no PATH do SVG (alguns browsers ignoram fill no svg) */
.review__stars svg path{
  fill: #ffc107 !important;
}

/* Ajuste de tamanho das estrelas no mobile */
@media (max-width: 768px){
  .review__stars svg{
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 480px){
  .review__stars svg{
    width: 16px !important;
    height: 16px !important;
  }
}

/* Evita links azuis nas avaliações (caso o widget gere <a>) */
#avaliacoes a,
.reviews a,
.review a{
  color: inherit !important;
  text-decoration: none !important;
}

.footer a {
    color: #00d4ff;
    text-decoration: none;
}
.footer a:hover {
    color: #00ff99;
    text-decoration: underline;
}
