/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5490;
    --secondary-color: #2c7bc2;
    --accent-color: #ff6b35;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.nav-item-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-hover);
    border-radius: 8px;
    min-width: 250px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 1.8rem;
}

.btn-header {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('imagens/auto-eletrica-donadon-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--bg-white);
    text-align: center;
    padding-top: 80px;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.65) 0%, rgba(44, 123, 194, 0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffd700;
    animation: fadeInUp 1s ease;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: #e55a2a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Seções */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
}

/* Sobre Nós */
.sobre {
    background: var(--bg-white);
    padding: 4rem 0;
}

.sobre-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.sobre-image {
    text-align: center;
    margin: 2rem auto 3rem;
    max-width: 100%;
}

.sobre-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.destaques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destaque-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destaque-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.destaque-icon {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.destaque-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Serviços */
.servicos {
    background: var(--bg-light);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.servico-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    display: block;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
    color: inherit;
}

.servico-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background: var(--bg-light);
}

.servico-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.servico-card:hover .servico-image img {
    transform: scale(1.05);
}

.servico-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.servico-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.servicos-lista {
    text-align: center;
    margin-top: 3rem;
}

.servicos-lista ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.servicos-lista li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 1.05rem;
}

.servicos-lista li::before {
    content: '✓ ';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.servicos-lista li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.servicos-lista li a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.servicos-cta {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

/* Baterias */
.baterias {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    text-align: center;
}

.baterias .section-title {
    color: var(--bg-white);
}

.baterias .section-title::after {
    background: var(--accent-color);
}

.baterias-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.baterias .btn-primary {
    background: var(--accent-color);
}

/* Como Chegar */
.como-chegar {
    background: var(--bg-white);
}

.endereco-info {
    text-align: center;
    margin-bottom: 2rem;
}

.endereco-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.endereco-text strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.mapa-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mapa-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Contato */
.contato {
    background: var(--bg-light);
    text-align: center;
}

.contato-content {
    margin-bottom: 3rem;
}

.contato-info {
    margin-bottom: 2rem;
}

.contato-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contato-icon {
    font-size: 2rem;
}

.contato-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contato-link:hover {
    color: var(--secondary-color);
}

.btn-contato {
    margin-top: 1rem;
}

.horario-funcionamento {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.horario-funcionamento h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.horario-table {
    width: 100%;
    border-collapse: collapse;
}

.horario-table td {
    padding: 0.8rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.horario-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
}

.horario-table tr:last-child td {
    border-bottom: none;
}

/* Avaliações Google */
.avaliacoes {
    background: var(--bg-light);
    padding: 4rem 0;
}

.avaliacoes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.avaliacoes-header .btn-secondary {
    background: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
}

.avaliacoes-header .btn-secondary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--bg-white);
}

.avaliacoes-rating {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.rating-stars .star {
    font-size: 2rem;
    color: #ffc107;
    letter-spacing: 2px;
}

.rating-info {
    display: flex;
    flex-direction: column;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.rating-total {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.avaliacao-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avaliacao-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.avaliacao-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.avaliacao-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avaliacao-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.avaliacao-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.3rem 0;
}

.avaliacao-stars {
    color: #ffc107;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.avaliacao-time {
    font-size: 0.85rem;
    color: var(--text-light);
    white-space: nowrap;
}

.avaliacao-text {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.avaliacao-loading,
.avaliacao-fallback {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: var(--bg-white);
    border-radius: 10px;
    color: var(--text-light);
}

.avaliacao-fallback p {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .avaliacoes-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .avaliacoes-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .avaliacoes-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer-column a {
    color: var(--bg-white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-horario {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.horario-item .dia {
    color: rgba(255, 255, 255, 0.8);
}

.horario-item .horas {
    color: var(--bg-white);
    font-weight: 500;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-excellence-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-top: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-excellence-img:hover {
    opacity: 1;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 0.5rem;
}

.footer-links-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links-column ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--bg-white);
}

@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links-column ul {
        max-height: none;
    }

    .horario-item {
        font-size: 0.85rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive - Mobile First */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--bg-white);
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-item-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        background: var(--bg-light);
        border-radius: 0;
        margin-left: 1rem;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown-menu.mobile-open {
        max-height: 500px;
    }

    .dropdown-menu a {
        padding: 0.8rem 1rem;
        border-left: none;
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown-menu a:hover {
        padding-left: 1rem;
        border-left: none;
    }

    .btn-header {
        display: none;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .destaques-grid {
        grid-template-columns: 1fr;
    }

    .servicos-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .servico-image {
        height: 180px;
    }

    .contato-link {
        font-size: 1.2rem;
    }

    .mapa-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 60px;
        margin-top: 60px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .servico-image {
        height: 220px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .logo-img {
        height: 40px;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .footer-excellence-img {
        max-width: 150px;
    }
}

/* Otimizações de Performance */
img {
    max-width: 100%;
    height: auto;
}

/* Acessibilidade */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer {
        display: none;
    }

    section {
        page-break-inside: avoid;
    }
}

/* Estilos para Páginas de Serviços */
.servico-hero {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    color: var(--bg-white);
    padding: 120px 0 60px;
    margin-top: 70px;
    text-align: center;
    overflow: hidden;
}

.servico-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.70) 0%, rgba(44, 123, 194, 0.70) 100%);
    z-index: 1;
}

.servico-hero .container {
    position: relative;
    z-index: 2;
}

.servico-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.servico-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.servico-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.servico-content {
    padding: 4rem 0;
    background: var(--bg-white);
}

.servico-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.servico-section:last-of-type {
    border-bottom: none;
}

.servico-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
}

.servico-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.servico-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.termos-relacionados {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
    font-size: 1rem;
    color: var(--text-dark);
}

.termos-relacionados strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.faq-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
    margin: 4rem 0;
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    border: none;
    padding: 0;
}

.faq-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 0;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 4rem;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: var(--bg-white);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


@media (max-width: 768px) {
    .servico-hero-title {
        font-size: 1.8rem;
    }

    .servico-hero-subtitle {
        font-size: 1rem;
    }

    .servico-section h2 {
        font-size: 1.5rem;
    }

    .servico-section h3 {
        font-size: 1.2rem;
    }

    .servico-section p {
        font-size: 1rem;
        text-align: left;
    }

    .faq-section {
        padding: 2rem 1rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Botão Flutuante Ligar Agora */
.floating-call-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.floating-call-button:hover {
    background: #e55a2a;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.floating-call-button svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.floating-call-text {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.floating-call-button:hover .floating-call-text {
    opacity: 1;
    transform: translateX(0);
}

.floating-call-button:hover svg {
    transform: rotate(15deg);
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .floating-call-button {
        width: 56px;
        height: 56px;
        right: 15px;
        bottom: 15px;
    }

    .floating-call-button svg {
        width: 26px;
        height: 26px;
    }

    .floating-call-text {
        right: 65px;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .floating-call-button {
        width: 52px;
        height: 52px;
        right: 12px;
        bottom: 12px;
    }

    .floating-call-button svg {
        width: 24px;
        height: 24px;
    }

    .floating-call-text {
        right: 60px;
        font-size: 0.8rem;
        padding: 0.45rem 0.9rem;
    }
}
