/*
Theme Name: MB Automóveis V4
Description: Tema WordPress elegante para venda de automóveis premium com galeria de imagens e design moderno
Version: 4.0
Author: MB Automóveis
*/

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
}

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

/* Header */
.site-header {
    background: #000;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

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

.logo img {
    height: 50px;
    width: auto;
}

.logo a {
    display: block;
}

.main-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav .nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.main-nav .nav-menu li a:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/wp-content/themes/versao_final/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #D4AF37;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #D4AF37, #F4E06D);
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(45deg, #F4E06D, #D4AF37);
}

/* Cars Section */
.cars-section {
    padding: 80px 0;
    background: #111;
}

.cars-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 50px;
    font-weight: bold;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.car-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.car-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.car-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.car-card:hover .car-image {
    transform: scale(1.05);
}

.car-info {
    padding: 25px;
}

.car-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.car-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.car-brand {
    color: #D4AF37;
    font-weight: 500;
}

.car-year {
    color: #ccc;
    font-size: 0.9rem;
}

.car-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #D4AF37;
    margin-bottom: 15px;
}

.car-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: #D4AF37;
    color: #000;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.view-details {
    background: linear-gradient(45deg, #D4AF37, #F4E06D);
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.view-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* View All Button */
.view-all-button {
    text-align: center;
    margin-top: 40px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a;
    border-radius: 15px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid #D4AF37;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #D4AF37;
    color: #000;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.modal-info {
    padding: 30px;
}

.modal-title {
    color: #D4AF37;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.modal-gallery {
    margin-bottom: 30px;
}

.modal-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.thumbnail {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #D4AF37;
    transform: scale(1.05);
}

.gallery-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.nav-button {
    background: #D4AF37;
    color: #000;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.image-counter {
    color: #D4AF37;
    font-weight: bold;
}

.modal-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: #2a2a2a;
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
}

.detail-item span:first-child {
    color: #D4AF37;
    font-weight: bold;
}

.detail-item span:last-child {
    color: #fff;
}

.modal-price {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #D4AF37;
    margin-bottom: 30px;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 10px;
}

.whatsapp-button {
    display: block;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Footer */
.site-footer {
    background: #000;
    color: #fff;
    padding: 50px 0 20px;
    border-top: 2px solid #D4AF37;
}

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

.footer-section h3 {
    color: #D4AF37;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #D4AF37;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

/* Filters (para página catálogo) */
.filters {
    background: #1a1a1a;
    padding: 40px 0;
    border-bottom: 2px solid #D4AF37;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.filter-group label {
    display: block;
    color: #D4AF37;
    font-weight: bold;
    margin-bottom: 8px;
}

.filter-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #333;
    border-radius: 8px;
    background: #2a2a2a;
    color: #fff;
    font-size: 16px;
}

.filter-group select:focus {
    border-color: #D4AF37;
    outline: none;
}

.filter-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-filter,
.btn-clear {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filter {
    background: #D4AF37;
    color: #000;
}

.btn-clear {
    background: #666;
    color: #fff;
}

.btn-filter:hover,
.btn-clear:hover {
    transform: translateY(-2px);
}

.results-info {
    text-align: center;
    margin-bottom: 30px;
}

.results-info h2 {
    color: #D4AF37;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.results-info p {
    color: #ccc;
    font-size: 1.1rem;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #ccc;
}

.no-results h3 {
    color: #D4AF37;
    font-size: 2rem;
    margin-bottom: 15px;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #D4AF37;
    font-size: 1.2rem;
}

.loading.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .main-nav .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-details {
        grid-template-columns: 1fr;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .filter-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cars-section h2 {
        font-size: 2rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-price {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.car-card {
    animation: slideUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #F4E06D;
}

/* ===== CSS CORRIGIDO PARA PÁGINAS ===== */

/* Page Main Styles */
.page-main {
    padding: 120px 0 80px 0;
    background: #fff;
    min-height: calc(100vh - 200px);
}

.page-article {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #D4AF37;
}

.page-title {
    font-size: 48px !important;
    color: #000 !important;
    margin: 0 !important;
    font-weight: bold !important;
    text-transform: none !important;
}

.page-content-wrapper {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.page-content-wrapper h1,
.page-content-wrapper h2,
.page-content-wrapper h3,
.page-content-wrapper h4,
.page-content-wrapper h5,
.page-content-wrapper h6 {
    color: #000 !important;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    font-weight: bold !important;
}

.page-content-wrapper h1 {
    font-size: 36px !important;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 10px;
}

.page-content-wrapper h2 {
    font-size: 28px !important;
    color: #D4AF37 !important;
}

.page-content-wrapper h3 {
    font-size: 22px !important;
}

.page-content-wrapper h4 {
    font-size: 20px !important;
}

.page-content-wrapper p {
    margin-bottom: 20px !important;
    color: #333 !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
}

.page-content-wrapper ul,
.page-content-wrapper ol {
    margin: 20px 0 !important;
    padding-left: 30px !important;
}

.page-content-wrapper li {
    margin-bottom: 10px !important;
    color: #333 !important;
    line-height: 1.6 !important;
}

.page-content-wrapper strong,
.page-content-wrapper b {
    color: #D4AF37 !important;
    font-weight: bold !important;
}

.page-content-wrapper a {
    color: #D4AF37 !important;
    text-decoration: none !important;
    font-weight: bold !important;
}

.page-content-wrapper a:hover {
    text-decoration: underline !important;
    color: #B8941F !important;
}

/* Contact Page Specific Styles */
.contact-info-highlight {
    background: #f8f8f8 !important;
    padding: 40px !important;
    border-radius: 10px !important;
    margin-top: 40px !important;
    border: 2px solid #D4AF37 !important;
}

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

.contact-item {
    text-align: center !important;
    padding: 20px !important;
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.contact-item h3 {
    color: #D4AF37 !important;
    margin-bottom: 15px !important;
    font-size: 18px !important;
}

.contact-item p {
    margin: 0 !important;
    font-size: 16px !important;
    color: #333 !important;
}

.contact-item a {
    color: #000 !important;
    text-decoration: none !important;
    font-weight: bold !important;
}

.contact-item a:hover {
    color: #D4AF37 !important;
}

.whatsapp-cta {
    text-align: center !important;
}

/* Table Styles */
.page-content-wrapper table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 30px 0 !important;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.page-content-wrapper th,
.page-content-wrapper td {
    padding: 15px !important;
    text-align: left !important;
    border-bottom: 1px solid #ddd !important;
    color: #333 !important;
}

.page-content-wrapper th {
    background: #D4AF37 !important;
    color: #fff !important;
    font-weight: bold !important;
}

.page-content-wrapper tr:hover {
    background: #f5f5f5 !important;
}

/* No Content Styles */
.no-content {
    text-align: center !important;
    padding: 80px 20px !important;
}

.no-content h2 {
    color: #000 !important;
    margin-bottom: 20px !important;
}

.no-content p {
    color: #666 !important;
    margin-bottom: 30px !important;
}

/* Responsive para páginas */
@media (max-width: 768px) {
    .page-main {
        padding: 100px 0 40px 0 !important;
    }
    
    .page-title {
        font-size: 32px !important;
    }
    
    .page-content-wrapper h1 {
        font-size: 28px !important;
    }
    
    .page-content-wrapper h2 {
        font-size: 24px !important;
    }
    
    .contact-info-highlight {
        padding: 20px !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .page-article {
        padding: 0 15px !important;
    }
}



/* ===== PÁGINA DE CONTACTOS - DESIGN BF AUTOMÓVEIS ===== */

.contactos-page .page-main {
    padding: 0;
    background: #000;
}

.contactos-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/wp-content/themes/versao_final/hero-bg.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    padding: 120px 0 80px 0;
    position: relative;
}

.contactos-title {
    font-size: 48px !important;
    color: #D4AF37 !important;
    font-weight: bold !important;
    margin: 0 0 30px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8) !important;
}

.contactos-subtitle {
    font-size: 18px;
    color: #fff;
    margin-bottom: 60px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    max-width: 800px;
}

.contactos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.info-title {
    font-size: 24px !important;
    color: #fff !important;
    font-weight: bold !important;
    margin: 0 0 40px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8) !important;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    color: #fff;
}

.contact-item i {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-text {
    font-size: 16px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.contact-note {
    font-size: 14px;
    color: #ccc;
    font-style: italic;
}

.whatsapp-link {
    color: #25D366 !important;
    text-decoration: none;
    font-weight: bold;
}

.whatsapp-link:hover {
    color: #128C7E !important;
    text-decoration: underline;
}

/* Garantir que o texto do WhatsApp é sempre visível */
.contact-item .whatsapp-link {
    color: #25D366 !important;
    background: transparent !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8) !important;
}

.contact-item .whatsapp-link:hover {
    color: #128C7E !important;
}

.icon-location::before { content: "📍"; }
.icon-phone::before { content: "📞"; }
.icon-email::before { content: "✉️"; }
.icon-whatsapp::before { content: "💬"; }

.horario-item {
    margin-bottom: 25px;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.horario-item strong {
    color: #fff;
    font-weight: bold;
}

/* Mapa */
.contactos-map {
    background: #111;
    padding: 0;
}

.contactos-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Formulário */
.contactos-form-section {
    background: #111;
    padding: 80px 0;
}

.form-section-title {
    font-size: 32px !important;
    color: #D4AF37 !important;
    text-align: center !important;
    margin: 0 0 50px 0 !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    color: #D4AF37;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #333;
    color: #fff;
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form select option {
    background: #333;
    color: #fff;
}

.checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #D4AF37;
    border-radius: 3px;
    margin-right: 12px;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #D4AF37;
    border-color: #D4AF37;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: bold;
    font-size: 12px;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.submit-button {
    background: linear-gradient(135deg, #D4AF37, #F4C430);
    color: #000;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-width: 200px;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.button-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.button-loading::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #000;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.2);
    border: 2px solid #28a745;
    color: #28a745;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.2);
    border: 2px solid #dc3545;
    color: #dc3545;
}

/* Responsive para contactos */
@media (max-width: 768px) {
    .contactos-hero {
        background-attachment: scroll;
        padding: 100px 0 60px 0;
    }
    
    .contactos-title {
        font-size: 36px !important;
    }
    
    .contactos-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .submit-button {
        padding: 12px 30px;
        font-size: 14px;
        min-width: 180px;
    }
}


/* ===== PÁGINAS ESTÁTICAS - DESIGN UNIFORME ===== */

/* Remover faixas brancas */
body.page,
body.page-template,
body.page-id-contactos,
body.page-id-sobre-nos,
body.page-id-servicos {
    margin: 0 !important;
    padding: 0 !important;
}

html {
    margin: 0 !important;
    padding: 0 !important;
}

.sobre-nos-page .page-main,
.servicos-page .page-main {
    padding: 0;
    background: #000;
    margin: 0;
}

.contactos-page .page-main {
    padding: 0;
    background: #000;
    margin: 0;
}

.page-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/wp-content/themes/versao_final/hero-bg.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    padding: 120px 0 80px 0;
    position: relative;
}

.page-title {
    font-size: 48px !important;
    color: #D4AF37 !important;
    font-weight: bold !important;
    margin: 0 0 30px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8) !important;
    text-align: center !important;
}

.page-subtitle {
    font-size: 18px;
    color: #fff;
    margin-bottom: 60px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 28px !important;
    color: #D4AF37 !important;
    font-weight: bold !important;
    margin: 0 0 25px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8) !important;
}

.page-content p {
    font-size: 16px;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.page-content strong {
    color: #D4AF37;
    font-weight: bold;
}

/* Grid de valores */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #D4AF37;
    transform: translateY(-5px);
}

.value-item h3 {
    font-size: 20px !important;
    color: #D4AF37 !important;
    margin: 0 0 15px 0 !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.value-item p {
    margin-bottom: 0 !important;
    font-size: 15px !important;
}

/* Features dos serviços */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.feature-item h3 {
    font-size: 18px !important;
    color: #D4AF37 !important;
    margin: 0 0 12px 0 !important;
    font-weight: bold !important;
}

.feature-item p {
    margin-bottom: 0 !important;
    font-size: 15px !important;
}

/* Listas de serviços */
.service-list {
    margin-top: 25px;
}

.service-list ul {
    list-style: none;
    padding: 0;
}

.service-list li {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.service-list li::before {
    content: '▸';
    color: #D4AF37;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* CTA de contacto */
.contact-cta {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #D4AF37;
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
}

.contact-cta p {
    margin-bottom: 15px !important;
}

.contact-cta a {
    color: #25D366 !important;
    text-decoration: none;
    font-weight: bold;
}

.contact-cta a:hover {
    color: #128C7E !important;
    text-decoration: underline;
}

/* Responsive para páginas estáticas */
@media (max-width: 768px) {
    .page-hero {
        background-attachment: scroll;
        padding: 100px 0 60px 0;
    }
    
    .page-title {
        font-size: 36px !important;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px !important;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-item,
    .feature-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px !important;
        letter-spacing: 2px !important;
    }
    
    .section-title {
        font-size: 20px !important;
    }
    
    .page-content p {
        font-size: 15px;
    }
}


/* ===== REMOVER FAIXAS BRANCAS - CSS MAIS ESPECÍFICO ===== */

/* Remover todas as margens e paddings do WordPress */
body, html {
    margin: 0 !important;
    padding: 0 !important;
    background: #000 !important;
}

/* Remover faixas brancas específicas do WordPress */
#page, #content, .site, .site-content, .content-area, .site-main {
    margin: 0 !important;
    padding: 0 !important;
    background: #000 !important;
}

/* Páginas estáticas específicas */
.page .site-main,
.page-template .site-main,
.page #primary,
.page-template #primary {
    margin: 0 !important;
    padding: 0 !important;
    background: #000 !important;
}

/* Header e footer sem margens */
.site-header,
.site-footer {
    margin: 0 !important;
}

/* Container principal das páginas */
.page .page-main,
.page-template .page-main {
    margin: 0 !important;
    padding: 0 !important;
    background: #000 !important;
    min-height: 100vh !important;
}

/* Remover qualquer fundo branco */
.page,
.page-template,
.single,
.archive {
    background: #000 !important;
}

/* ===== GARANTIR QUE NÃO HÁ CARDS BRANCOS ===== */

/* Remover qualquer card ou container branco */
.contact-card,
.card,
.white-card,
.contact-box {
    display: none !important;
}

/* Garantir que contact-item não tem fundo branco */
.contact-item {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-bottom: 30px !important;
    display: flex !important;
    align-items: flex-start !important;
    color: #fff !important;
}

/* Texto dos contactos sempre branco */
.contact-item .contact-text {
    color: #fff !important;
    background: transparent !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8) !important;
}

.contact-item .contact-note {
    color: #ccc !important;
    background: transparent !important;
}

/* Remover qualquer container ou wrapper com fundo branco */
.entry-content,
.post-content,
.page-content {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remover espaçamentos do tema */
.wp-block-group,
.wp-block-columns,
.wp-block-column {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}



/* ===== PÁGINA DEDICADA DO AUTOMÓVEL ===== */

.single-automovel-page {
    background: #000;
    color: #fff;
    min-height: 100vh;
}

/* Breadcrumbs */
.breadcrumbs {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

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

.breadcrumbs a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #fff;
}

.breadcrumbs .separator {
    margin: 0 10px;
    color: #666;
}

.breadcrumbs .current {
    color: #fff;
}

/* Hero Section */
.automovel-hero {
    padding: 40px 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.automovel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.automovel-title {
    font-size: 2.5rem;
    color: #D4AF37;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.automovel-price {
    text-align: right;
}

.price-label {
    display: block;
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 5px;
}

.price-value {
    font-size: 2rem;
    font-weight: bold;
    color: #D4AF37;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Layout Principal */
.automovel-content {
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Galeria */
.automovel-gallery {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #333;
}

.main-image-container {
    margin-bottom: 20px;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.02);
}

.thumbnails-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
    max-height: 200px;
    overflow-y: auto;
}

.thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #D4AF37;
    opacity: 1;
    transform: scale(1.05);
}

/* Informações */
.automovel-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #333;
    height: fit-content;
}

.quick-specs {
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #333;
}

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

.spec-label {
    font-weight: bold;
    color: #D4AF37;
}

.spec-value {
    color: #fff;
    text-align: right;
}

/* ===== ESPECIFICAÇÕES RÁPIDAS ===== */

.quick-specs {
    display: block;    padding: 12px 0;    border-bottom: 1px solid #333;
    padding: 12px 0;
    border-bottom: 1px solid #333;
}

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

.char-label {
    font-weight: bold;
    color: #D4AF37;
    flex: 1;
}

.char-value {
    color: #fff;
    text-align: right;
    flex: 1;
}

.char-full {
    color: #fff;
    width: 100%;
}

/* Layout das especificações técnicas e equipamento */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Descrição */
.automovel-description {
    background: #000;
    padding: 60px 0 80px 0;
    border-bottom: 1px solid #333;
}

.automovel-description .section-title {
    text-align: left;
    margin-bottom: 30px;
    font-size: 2rem;
}

.description-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

/* Características e Equipamento */
.automovel-details {
    background: #000;
    padding: 80px 0;
    border-bottom: 1px solid #333;
}

/* Título do equipamento sem sublinhado */
.equipment-title {
    font-size: 1.3rem;
    color: #D4AF37;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

/* Caixa do equipamento */
.equipment {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #333;
}

/* Equipamento */
.equipment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

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

.equipment-icon {
    color: #D4AF37;
    font-weight: bold;
    font-size: 1.2rem;
}

.equipment-text {
    color: #fff;
    flex: 1;
}

/* Call to Action Final */
.final-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.cta-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-whatsapp,
.cta-catalog {
    padding: 18px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 200px;
}

.cta-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
}

.cta-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.cta-catalog {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000;
}

.cta-catalog:hover {
    background: linear-gradient(135deg, #B8941F 0%, #D4AF37 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Responsivo */
@media (max-width: 768px) {
    .automovel-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .automovel-header {
        flex-direction: column;
        text-align: center;
    }
    
    .automovel-title {
        font-size: 2rem;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-whatsapp,
    .cta-catalog {
        width: 100%;
        max-width: 300px;
    }
    
    .thumbnails-container {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    }
    
    .thumbnail {
        height: 60px;
    }
}


/* ===== CARDS COM LINKS PARA PÁGINAS DEDICADAS ===== */

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

.car-card .car-link:hover {
    text-decoration: none;
    color: inherit;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.view-details-button {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.car-card:hover .view-details-button {
    background: linear-gradient(135deg, #B8941F 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}


/* ===== NAVEGAÇÃO ENTRE IMAGENS ===== */

.main-image-container {
    position: relative;
    margin-bottom: 20px;
}

.image-navigation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #D4AF37;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

.nav-btn:hover {
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.image-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #D4AF37;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    pointer-events: auto;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Transição suave da imagem principal */
.main-image {
    transition: opacity 0.3s ease;
}

/* Melhorar thumbnails para navegação */
.thumbnail {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.thumbnail.active::after,
.thumbnail:hover::after {
    opacity: 0;
}

.thumbnail.active {
    border-color: #D4AF37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Responsivo para navegação */
@media (max-width: 768px) {
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .image-counter {
        bottom: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
    
    .image-counter {
        bottom: 5px;
        right: 5px;
        padding: 4px 8px;
        font-size: 11px;
    }
}

/* Indicador de swipe para mobile */
@media (max-width: 768px) {
    .main-image-container::before {
        content: 'Deslize para navegar';
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.7);
        color: #D4AF37;
        padding: 5px 10px;
        border-radius: 15px;
        font-size: 12px;
        opacity: 0.8;
        z-index: 10;
        animation: fadeInOut 3s ease-in-out;
    }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.8; }
}

/* Ocultar indicador de swipe após 3 segundos */
.main-image-container.swipe-used::before {
    display: none;
}


/* ===== ESPECIFICAÇÕES TÉCNICAS DETALHADAS ===== */

.tech-category {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #333;
}

.category-title {
    font-size: 1.3rem;
    color: #D4AF37;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.tech-category .characteristic-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #333;
    transition: background-color 0.3s ease;
}

.tech-category .characteristic-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 6px;
    margin: 0 -10px;
    padding: 12px 10px;
}

.tech-category .characteristic-item:last-child {
    border-bottom: none;
}

.tech-category .char-label {
    font-weight: 600;
    color: #fff;
    flex: 1;
    font-size: 0.95rem;
}

.tech-category .char-value {
    color: #D4AF37;
    text-align: right;
    flex: 1;
    font-weight: bold;
    font-size: 0.95rem;
}

.tech-category .char-full {
    color: #fff;
    width: 100%;
    font-size: 0.95rem;
}

/* Responsivo para especificações técnicas */
@media (max-width: 768px) {
    .tech-category {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .category-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .tech-category .characteristic-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 15px 0;
    }
    
    .tech-category .char-label,
    .tech-category .char-value {
        text-align: left;
        flex: none;
        width: 100%;
    }
    
    .tech-category .char-value {
        color: #ccc;
        font-weight: normal;
    }
}



/* ===== ÍCONES DAS ESPECIFICAÇÕES RÁPIDAS ===== */

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #333;
}

.spec-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    color: #D4AF37;
    font-weight: bold;
    /* Forçar cor dourada em emojis */
    filter: sepia(1) saturate(2) hue-rotate(35deg) brightness(1.2);
    -webkit-filter: sepia(1) saturate(2) hue-rotate(35deg) brightness(1.2);
}

.spec-label {
    color: #D4AF37;
    font-weight: 600;
    flex: 1;
    font-size: 0.95rem;
}

.spec-value {
    color: #fff;
    font-weight: bold;
    text-align: right;
    flex: 1;
    font-size: 0.95rem;
}

/* Responsivo para ícones */
@media (max-width: 768px) {
    .spec-item {
        gap: 8px;
        padding: 10px 0;
    }
    
    .spec-icon {
        font-size: 1rem;
        width: 20px;
    }
    
    .spec-label,
    .spec-value {
        font-size: 0.9rem;
    }
}


/* ===== ALINHAMENTO DAS CAIXAS ===== */

/* Fazer as caixas ficarem à mesma altura */
.automovel-gallery,
.automovel-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gallery-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.quick-specs {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Ajustar container principal para flexbox */
.automovel-content {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

@media (max-width: 768px) {
    .automovel-content {
        flex-direction: column;
        align-items: normal;
    }
}


/* ===== BOTÃO PDF ===== */

.pdf-button {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 10px;
    position: relative;
}

.pdf-button:hover {
    background: linear-gradient(135deg, #c82333 0%, #dc3545 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
    color: #fff;
}

/* Ícone dourado do PDF */
.pdf-button::before {
    content: "📄";
    margin-right: 8px;
    filter: sepia(1) hue-rotate(35deg) saturate(2) brightness(1.2);
}


/* ===== MENU HAMBURGER MOBILE ===== */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #D4AF37;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Animação do hamburger quando ativo */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Estilos mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
        transition: left 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid #333;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 20px 30px;
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
    }
    
    .nav-menu a:hover,
    .nav-menu a:focus {
        background: rgba(212, 175, 55, 0.1);
        border-left-color: #D4AF37;
        color: #D4AF37;
    }
    
    .nav-menu .current-menu-item a {
        background: rgba(212, 175, 55, 0.2);
        border-left-color: #D4AF37;
        color: #D4AF37;
    }
    
    /* Overlay para fechar menu */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Ajustar header para mobile */
    .header-content {
        justify-content: space-between;
        align-items: center;
    }
    
    .logo img {
        max-height: 40px;
    }
}

/* Prevenir scroll quando menu está aberto */
body.mobile-menu-open {
    overflow: hidden;
}



/* ===== BOTÃO WHATSAPP FLUTUANTE ===== */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* Animação de pulso */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsivo mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

