/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Melhorar renderização de imagens */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
}

.logo span {
    color: #dc3545;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: #dc3545;
}

.btn-quote {
    background: #dc3545;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-quote:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
}

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

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-experience {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 14px 35px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background: #dc3545;
    color: white;
}

.btn-primary:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-2px);
}

/* Quick Features - Removido do hero, agora dentro da seção About */
.quick-features-inline {
    width: 100%;
    margin-top: 2rem;
    background: #000;
    border-top: 3px solid #dc3545;
    border-bottom: 3px solid #dc3545;
    padding: 3rem 0;
    box-sizing: border-box;
}

@media (min-width: 1025px) {
    .quick-features-inline {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
}

.quick-features-inline .features-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: center;
}

.feature-box {
    text-align: center;
    padding: 2rem 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.feature-box:hover i {
    transform: scale(1.1);
}

.feature-box h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about-content-full {
    width: 100%;
    background: #f8f9fa;
    padding: 4rem 0;
    box-sizing: border-box;
}

@media (min-width: 1025px) {
    .about-content-full {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #dc3545;
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-text {
    width: 100%;
}

.about-text h3 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text p strong {
    color: #000;
    font-weight: 700;
}

/* About Values */
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #dc3545;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.value-item i {
    font-size: 1.8rem;
    color: #dc3545;
    margin-top: 0.3rem;
    min-width: 30px;
}

.value-item h4 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.value-item p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Features Grid */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #dc3545;
    background: #fff;
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.15);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #000;
    transform: scale(1.1);
}

.feature-card .feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    width: 100%;
    box-sizing: border-box;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button-wrapper {
    display: inline-block;
    width: 100%;
    max-width: 350px;
}

.cta-content .btn,
.cta-content .cta-btn {
    padding: 14px 40px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 350px;
    display: inline-block;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.cta-content .btn:hover,
.cta-content .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(220, 53, 69, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-info p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.product-code {
    color: #95a5a6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #dc3545;
    display: block;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

.payments {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1c1c1c 100%);
    position: relative;
    overflow: hidden;
}

.payments::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.15), transparent 55%);
    opacity: 0.9;
}

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

.payments .section-header h2 {
    color: #ffffff;
}

.payments .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.payments-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.payment-card {
    background: rgba(21, 21, 21, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
}

.payment-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.payment-card i {
    font-size: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
}

.payment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

.payment-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.whatsapp-popup-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1.5rem;
}

.whatsapp-popup-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.whatsapp-popup {
    background: linear-gradient(135deg, #111111 0%, #1b1b1b 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    color: white;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.whatsapp-popup-backdrop.active .whatsapp-popup {
    transform: translateY(0);
    opacity: 1;
}

.whatsapp-popup .close-popup {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.whatsapp-popup .close-popup:hover,
.whatsapp-popup .close-popup:focus {
    color: var(--gold);
}

.whatsapp-popup .popup-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.whatsapp-popup h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    text-align: center;
    font-weight: 600;
}

.whatsapp-popup p {
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.whatsapp-popup .popup-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.whatsapp-popup .popup-actions .btn-whatsapp {
    width: 100%;
    justify-content: center;
    gap: 0.6rem;
    font-size: 1rem;
    padding: 12px 20px;
}

.whatsapp-popup .popup-actions .btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85) !important;
}

.whatsapp-popup .popup-actions .btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    color: #7f8c8d;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #dc3545;
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.contact-link {
    color: #dc3545;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link:hover {
    color: #c82333;
    gap: 0.8rem;
}

.contact-btn {
    background: #dc3545;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    margin-top: 0.5rem;
    display: inline-flex;
    min-width: 180px;
    justify-content: center;
    white-space: nowrap;
}

.contact-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
    gap: 0.8rem;
}

.contact-btn-whatsapp {
    background: #25d366 !important;
}

.contact-btn-whatsapp:hover {
    background: #20ba5a !important;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.contact-cta {
    margin-top: 3rem;
}

.cta-box {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
}

.cta-box h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-email {
    background: #dc3545;
    color: white;
}

.btn-email:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
}

.btn-whatsapp,
.btn-email {
    padding: 14px 30px;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp i,
.btn-email i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
    font-weight: 600;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #dc3545;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #dc3545;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Responsive Design */

/* Desktop Médio (até 1200px) */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
}

/* Tablet e Desktop Pequeno (até 1024px) */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payments {
        padding: 4rem 0;
    }
    
    .payments-grid {
        gap: 1.5rem;
    }
    
    .payment-card {
        padding: 2rem 1.8rem;
    }

    .whatsapp-popup {
        max-width: 380px;
        padding: 2.2rem 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

/* Tablet (até 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Header */
    .nav-container {
        padding: 0 20px;
    }
    
    .btn-quote {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 999;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu a:hover {
        background-color: #f8f9fa;
        color: #dc3545;
    }
    
    .logo h2 {
        font-size: 1.5rem;
    }
    
    /* Prevenir scroll do body quando menu está aberto */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Hero Section */
    .hero {
        padding: 120px 0 60px;
        min-height: 60vh;
    }
    
    #home.hero {
        min-height: 60vh !important;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-experience {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    /* Quick Features */
    .quick-features-inline {
        margin-left: 0;
        width: 100%;
        padding: 2.5rem 15px;
        margin-top: 2rem;
    }
    
    .quick-features-inline .features-grid {
        padding: 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .feature-box {
        padding: 1.5rem 1rem;
    }
    
    .feature-box i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-box h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-box p {
        font-size: 0.95rem;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    /* About Section */
    .about-content-full {
        padding: 3rem 15px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    /* Products */
    .products {
        padding: 3rem 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .product-image img {
        height: 200px;
    }
    
    .product-info {
        padding: 1.2rem;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
    }
    
    .product-info p {
        font-size: 0.9rem;
    }
    
    .product-overlay .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        max-width: 200px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .payments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .payment-card {
        padding: 2rem 1.6rem;
    }

    .whatsapp-popup {
        padding: 2rem 1.6rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-icon i {
        font-size: 1.8rem;
    }
    
    .contact-card h3 {
        font-size: 1.2rem;
    }
    
    .contact-card p {
        font-size: 0.9rem;
    }
    
    .contact-btn {
        min-width: 160px;
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-whatsapp,
    .btn-email {
        width: 100%;
        justify-content: center;
    }
    
    /* About CTA */
    .about-cta {
        padding: 2.5rem 1.5rem;
        margin: 2rem 0;
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        padding: 0;
    }
    
    .cta-button-wrapper {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
    
    .cta-content .btn,
    .cta-content .cta-btn {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
        min-height: 48px;
        display: block;
        box-sizing: border-box;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    /* Back to top button */
    .back-to-top {
        width: 45px !important;
        height: 45px !important;
        bottom: 20px !important;
        right: 20px !important;
    }
}

/* Mobile (até 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .header {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo h2 {
        font-size: 1.3rem;
    }
    
    .hamburger {
        width: 30px;
        height: 25px;
    }
    
    .hamburger span {
        width: 25px;
        height: 2.5px;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 50px;
        min-height: 50vh;
    }
    
    #home.hero {
        min-height: 50vh !important;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    
    .hero-experience {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        max-width: 100%;
        width: 100%;
    }
    
    /* Quick Features */
    .quick-features-inline {
        padding: 2rem 15px;
        margin-top: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-box {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .feature-box i {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .feature-box h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-box p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    /* About */
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .value-item {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
    }
    
    .value-item i {
        margin-top: 0;
        margin-bottom: 0.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Products */
    .products {
        padding: 3rem 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-image img {
        height: 220px;
        object-fit: cover;
    }
    
    .product-info {
        padding: 1.2rem;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .product-info p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .product-overlay {
        background: rgba(220, 53, 69, 0.98);
    }
    
    .product-overlay .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: auto;
        max-width: 180px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .payments {
        padding: 3.5rem 0;
    }
    
    .payments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-card {
        padding: 1.8rem 1.4rem;
    }

    .whatsapp-popup {
        max-width: 360px;
        padding: 1.9rem 1.5rem;
    }
    
    .payments {
        padding: 3.5rem 0;
    }
    
    .payments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-card {
        padding: 2rem 1.5rem;
    }

    .whatsapp-popup {
        max-width: 340px;
        padding: 1.8rem 1.4rem;
        border-radius: 16px;
    }

    .whatsapp-popup h3 {
        font-size: 1.4rem;
    }

    .whatsapp-popup p {
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .contact-btn {
        min-width: 100%;
        font-size: 0.85rem;
        padding: 10px 15px;
    }
    
    .cta-box {
        padding: 2rem 1rem;
    }
    
    .cta-box h3 {
        font-size: 1.3rem;
    }
    
    .cta-box p {
        font-size: 0.95rem;
    }
    
    /* About CTA */
    .about-cta {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
        margin-left: 0;
        margin-right: 0;
        border-radius: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Garantir que o container tenha padding adequado */
    .container .about-cta {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
        padding: 0;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        padding: 0;
    }
    
    .cta-button-wrapper {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
    
    .cta-content .btn,
    .cta-content .cta-btn {
        padding: 16px 24px;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
        min-height: 50px;
        display: block;
        font-weight: 600;
        letter-spacing: 0.5px;
        box-sizing: border-box;
    }
    
    .cta-content .btn:hover,
    .cta-content .cta-btn:hover {
        transform: translateY(-1px);
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
}

/* Mobile Pequeno (até 360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    .logo h2 {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 90px 0 40px;
        min-height: 45vh;
    }
    
    #home.hero {
        min-height: 45vh !important;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-experience {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .contact-btn {
        font-size: 0.8rem;
        padding: 8px 12px;
        min-width: 140px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .product-image img {
        height: 200px;
    }
    
    .product-info h3 {
        font-size: 1rem;
    }
    
    .product-info p {
        font-size: 0.85rem;
    }
    
    .back-to-top {
        width: 40px !important;
        height: 40px !important;
        bottom: 15px !important;
        right: 15px !important;
        font-size: 0.9rem !important;
    }
    
    /* About CTA - Mobile Pequeno */
    .about-cta {
        padding: 1.8rem 1.4rem;
        margin: 1.5rem 0;
        margin-left: 0;
        margin-right: 0;
        border-radius: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .container .about-cta {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .cta-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
        padding: 0;
    }
    
    .cta-content p {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
        padding: 0;
    }
    
    .cta-content .btn,
    .cta-content .cta-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
        min-height: 48px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Quick Features - Mobile pequeno */
    .quick-features-inline {
        padding: 1.5rem 12px;
    }
    
    .feature-box {
        padding: 1.5rem 1rem;
    }
    
    .feature-box i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .feature-box h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .feature-box p {
        font-size: 0.9rem;
    }

    .whatsapp-popup {
        max-width: 320px;
        padding: 1.6rem 1.2rem;
    }

    .whatsapp-popup h3 {
        font-size: 1.25rem;
    }

    .whatsapp-popup p {
        font-size: 0.85rem;
    }
}

/* Melhorias para orientação landscape em mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 50px;
        min-height: 50vh;
    }
    
    #home.hero {
        min-height: 50vh !important;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-menu {
        height: calc(100vh - 70px);
        max-height: 400px;
    }
}

/* Touch improvements para dispositivos móveis */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .btn-quote,
    .contact-link,
    .contact-btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    .hamburger {
        min-height: 44px;
        min-width: 44px;
        padding: 10px;
        touch-action: manipulation;
    }
    
    .product-card,
    .service-card,
    .feature-card,
    .contact-card {
        cursor: pointer;
    }
    
    /* Remover hover effects em touch devices */
    .product-card:hover {
        transform: none;
    }
    
    .product-card:active {
        transform: scale(0.98);
    }
}

/* Melhorias para tablets em modo retrato */
@media (min-width: 481px) and (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-image img {
        height: 220px;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Quick Features - Tablet */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .feature-box {
        padding: 1.5rem 1rem;
    }
    
    .feature-box i {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .feature-box h3 {
        font-size: 1.15rem;
    }
    
    .feature-box p {
        font-size: 0.9rem;
    }
}

/* Melhorias para tablets em modo paisagem */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Melhorias de acessibilidade */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #dc3545;
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Ajustes para o header no scroll */
.header.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}/* Estilo para código do produto */
.product-code {
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}


/* =============================
   Gold Theme Overrides (Preto & Dourado)
   ============================= */
:root {
    --gold: #d4af37;
    --gold-dark: #b78f2a;
}

/* Header / Navegação */
.logo span { color: var(--gold) !important; }
.nav-menu a:hover { color: var(--gold) !important; }
.btn-quote { background: var(--gold) !important; }
.btn-quote:hover { background: var(--gold-dark) !important; }

/* Hero */
.hero::before { background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.04) 100%) !important; }

/* Botões */
.btn-primary { background: var(--gold) !important; color: #fff !important; }
.btn-primary:hover { background: var(--gold-dark) !important; box-shadow: 0 5px 15px rgba(212, 175, 55, 0.35) !important; }
.btn-secondary:hover { background: var(--gold) !important; color: #fff !important; }

/* Quick Features */
.quick-features-inline { border-top: 3px solid var(--gold) !important; border-bottom: 3px solid var(--gold) !important; }
.feature-box i { color: var(--gold) !important; }

/* Estatísticas */
.stat-item:hover { border-color: var(--gold) !important; box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15) !important; }
.stat-number { color: var(--gold) !important; }

/* Valores (Missão, Visão, Valores) */
.value-item { border-left: 4px solid var(--gold) !important; }
.value-item i { color: var(--gold) !important; }

/* Diferenciais (cards) */
.feature-card:hover { border-color: var(--gold) !important; box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15) !important; }
.feature-card .feature-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important; }

/* Produtos */
.product-overlay { background: rgba(212, 175, 55, 0.95) !important; }
.price { color: var(--gold) !important; }

/* Serviços */
.service-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important; }

/* Contato */
.contact-card:hover { border-color: var(--gold) !important; box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2) !important; }
.contact-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important; }
.contact-link { color: var(--gold) !important; }
.contact-link:hover { color: var(--gold-dark) !important; }
.contact-btn { background: var(--gold) !important; }
.contact-btn:hover { background: var(--gold-dark) !important; box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3) !important; }
/* WhatsApp permanece verde */

/* CTA */
.cta-box::before { background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%) !important; }
.btn-email { background: var(--gold) !important; }
.btn-email:hover { background: var(--gold-dark) !important; box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35) !important; }

/* Footer */
.footer-section ul li a:hover { color: var(--gold) !important; }
.social-links a:hover { background: var(--gold) !important; }

/* Acessibilidade (focus) */
.btn:focus,
input:focus,
select:focus,
textarea:focus { outline: 2px solid var(--gold) !important; outline-offset: 2px !important; }

/* HERO – imagem de fundo garantida por camada própria */
#home.hero {
    position: relative !important;
    overflow: hidden !important;
    min-height: 75vh !important;
    background-image: url('image/banner.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
#home.hero .hero-bg { display: none !important; }
#home.hero .hero-bg-img {
    display: none !important;
}
#home.hero .container,
#home.hero .hero-content,
#home.hero .hero-text { position: relative; z-index: 2; }

/* Neutraliza qualquer overlay antigo no hero */
#home.hero::before,
#home.hero::after { content: none !important; display: none !important; background: transparent !important; }

/* HERO overlay escuro para contraste */
#home.hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}
/* Garantir cor do texto do hero visível */
#home.hero .hero-text h1,
#home.hero .hero-text p { color: #fff; }

/* HERO – força texto branco para legibilidade sobre a imagem */
#home.hero .hero-text h1,
#home.hero .hero-text p,
#home.hero .hero-text a { color: #ffffff !important; }
#home.hero .btn-secondary { border-color: #ffffff !important; }
/* opcional: leve sombra para melhorar contraste em fundos claros */
#home.hero .hero-text h1 { text-shadow: 0 2px 8px rgba(0,0,0,0.35); }
#home.hero .hero-text p { text-shadow: 0 1px 6px rgba(0,0,0,0.3); }

/* Força cor do texto nos botões (legibilidade) */
.btn,
.btn-primary,
.btn-secondary,
.contact-btn,
.btn-email,
.btn-whatsapp,
.contact-link.contact-btn { color: #ffffff !important; }

/* Garante ícones brancos dentro dos botões */
.btn i,
.contact-btn i,
.btn-email i,
.btn-whatsapp i { color: #ffffff !important; }

