:root {
    --primary-color: #004080;
    /* Deep Blue */
    --primary-dark: #002d5a;
    --secondary-color: #00c853;
    /* Bright Green */
    --accent-blue: #1976d2;
    /* Blue for Problem Section */
    --accent-red: #d32f2f;
    /* Red for Problem Section */
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-grey: #f0f0f0;
    /* Light Grey for Problem Section */
    --white: #ffffff;
    --dark-bg: #1a1a1a;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    padding-top: 0;
    /* Removed padding since header is not fixed */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* Top Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
    /* Changed from fixed to relative */
    z-index: 1001;
    height: 40px;
}

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

.top-bar-info {
    display: flex;
    gap: 20px;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-info i {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    gap: 10px;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 200, 83, 0.3);
}

.btn-primary:hover {
    background-color: #009624;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 200, 83, 0.4);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

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

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 200, 83, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
    }
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
    /* Changed from fixed to relative */
    top: 0;
    /* Reset top */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    height: 100px;
    display: flex;
    align-items: center;
}

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

.logo-img {
    height: 80px;
    /* Adjusted for fixed header */
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    /* Updated background with visible image */
    background-image: linear-gradient(rgba(0, 64, 128, 0.75), rgba(0, 45, 90, 0.85)), url('https://images.unsplash.com/photo-1603712725038-e9334ae8f39f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ensure horizontal centering of the container */
    color: var(--white);
    text-align: center;
    /* Ensure text is centered */
}

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

.hero-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.text-highlight {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    justify-content: center;
    /* Center buttons */
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    justify-content: center;
    /* Center features */
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
}

.hero-feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Problem Solver Section (New) */
.problem-solver-section {
    background-color: var(--bg-grey);
    padding: 80px 0;
}

.problem-header {
    margin-bottom: 50px;
}

.problem-title-red {
    color: var(--accent-red);
    font-weight: 900;
    font-size: 2.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.problem-subtitle-blue {
    color: var(--accent-blue);
    font-weight: 900;
    font-size: 2.8rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.1;
}

.problem-text {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

.text-red-bold {
    color: var(--accent-red);
    font-weight: 800;
}

.problem-cards-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.problem-card {
    background-color: var(--accent-blue);
    color: var(--white);
    width: 160px;
    height: 160px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 8px 15px rgba(25, 118, 210, 0.3);
    cursor: default;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(25, 118, 210, 0.4);
    background-color: #1565c0;
}

.problem-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.problem-label {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Services */
.section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

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

.services-section {
    background-color: #f0f4f8;
}

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

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border-bottom: 4px solid transparent;
}

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

.service-image {
    height: 200px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-link {
    color: var(--secondary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

/* CTA Strip */
.cta-strip {
    background: var(--primary-color);
    padding: 80px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.cta-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #001e3c, #001020);
    /* Deep professional blue/black */
    color: #b0bec5;
    padding: 80px 0 30px;
    font-size: 0.95rem;
    border-top: 5px solid var(--secondary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 70px;
    /* Larger footer logo */
    filter: brightness(0) invert(1);
}

.footer-col p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #cfd8dc;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* Circular icons */
    transition: var(--transition);
    color: var(--white);
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b0bec5;
}

.footer-col ul li a::before {
    content: '\f054';
    /* FontAwesome chevron-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--secondary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info li i {
    color: var(--secondary-color);
    margin-top: 5px;
    font-size: 1.1rem;
    background: rgba(0, 200, 83, 0.1);
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #78909c;
}

/* Best Prices Section */
.best-prices-section {
    padding: 80px 0;
    background-color: var(--white);
    overflow: hidden;
}

.prices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.prices-title-wrapper {
    margin-bottom: 40px;
    position: relative;
}

.title-melhores {
    background-color: #1565c0;
    /* Blue */
    color: white;
    font-weight: 900;
    font-size: 3.5rem;
    padding: 5px 25px;
    text-transform: uppercase;
    line-height: 1;
    display: inline-block;
    transform: skewX(-10deg);
    position: relative;
    z-index: 1;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.title-precos {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    -webkit-text-stroke: 2px #d32f2f;
    /* Red outline */
    text-shadow: 4px 4px 0px #d32f2f;
    line-height: 0.8;
    display: block;
    margin-left: 40px;
    margin-top: -10px;
}

.prices-text {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
    line-height: 1.7;
}

.blue-cta-box {
    background: linear-gradient(to bottom, #1565c0, #0d47a1);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 30px 0;
    box-shadow: 0 8px 20px rgba(21, 101, 192, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.arrow-center {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.arrow-down {
    color: #4fc3f7;
    font-size: 3.5rem;
    animation: bounce 2s infinite;
}

.btn-center {
    display: flex;
    justify-content: center;
}

.green-pill-btn {
    background: linear-gradient(to right, #00c853, #00e676);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3rem;
    border: none;
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
}

.green-pill-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 200, 83, 0.7);
}

/* Right Side Image Card */
.prices-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    height: 600px;
}

.prices-image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.prices-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 64, 128, 0.6) 50%, rgba(0, 45, 90, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: white;
}

.overlay-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.overlay-title .text-red {
    color: #d32f2f;
    -webkit-text-stroke: 1px white;
    display: block;
}

.overlay-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 500;
    opacity: 0.9;
}

.overlay-badge {
    background: linear-gradient(to right, #00c853, #00e676);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

.overlay-badge:hover {
    transform: scale(1.05);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    background-color: #d1d1d1;
    background-image: linear-gradient(to bottom, #e0e0e0, #cfcfcf);
    padding: 80px 0;
    text-align: center;
}

.why-title {
    font-size: 3rem;
    font-weight: 900;
    color: #004080;
    /* Deep Blue Solid */
    margin-bottom: 60px;
    text-transform: uppercase;
    line-height: 1.1;
    font-family: 'Roboto', sans-serif;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
}

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

.why-card {
    background-color: #1976d2;
    border: 2px solid white;
    border-radius: 12px;
    padding: 35px 25px;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2));
}

.why-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.why-card p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.95;
}

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

.btn-green-pill-lg {
    background: linear-gradient(to bottom, #00e676, #00c853);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.4);
    border: 2px solid white;
    transition: transform 0.2s;
    font-size: 1.1rem;
}

.btn-green-pill-lg:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.6);
}

/* Icon Colors */
.icon-clock {
    color: #ffd700;
}

.icon-clean {
    color: #ffd700;
}

.icon-price {
    color: #ffd700;
}

.icon-pro {
    color: #90caf9;
}

.icon-guarantee {
    color: #e0e0e0;
}

.icon-quality {
    color: #ff7043;
}

/* Contact Section (New) */
.contact-section {
    background-color: #e0e0e0;
    /* Light grey from image */
    padding: 80px 0;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

/* Left Column - Image Composition */
.contact-image-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.attendant-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    background: #00e676;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: -30px;
    /* Overlap with phone banner */
    z-index: 2;
}

.attendant-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
}

.zap-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: linear-gradient(135deg, #00c853, #00e676);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulse-green 2s infinite;
    z-index: 3;
}

.zap-badge span {
    font-weight: 900;
    line-height: 1;
}

.zap-text-small {
    font-size: 0.8rem;
}

.zap-text-large {
    font-size: 1.8rem;
}

.phone-banner {
    background: linear-gradient(to right, #00c853, #009624);
    color: white;
    padding: 40px 40px 15px 40px;
    /* Top padding for overlap */
    border-radius: 50px;
    font-size: 2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    margin-top: 0;
    width: 100%;
    justify-content: center;
    border: 4px solid white;
}

.fale-conosco-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f0f0f0;
    color: #333;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 4;
}

/* Right Column - Text */
.contact-text-col {
    padding-left: 20px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.text-red-title {
    color: #d32f2f;
}

.text-blue-title {
    color: #1565c0;
    display: block;
}

.title-underline {
    width: 100px;
    height: 5px;
    background-color: #1976d2;
    margin-bottom: 30px;
}

.contact-description {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.6;
}

.contact-cta-text {
    font-weight: 800;
    color: #333;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn-orcamento-green {
    background: linear-gradient(to right, #00c853, #00e676);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    border: 2px solid white;
    box-shadow: 0 0 0 4px #00c853, 0 10px 20px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    transition: transform 0.3s;
    text-decoration: none;
}

.btn-orcamento-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 0 4px #00c853, 0 15px 25px rgba(0, 0, 0, 0.3);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 200, 83, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .problem-subtitle-blue {
        font-size: 2rem;
    }

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

    .top-bar {
        display: none;
    }

    .header {
        position: relative;
        /* Changed from fixed to relative for mobile */
        top: 0;
        height: auto;
        padding: 10px 0;
    }

    body {
        padding-top: 0;
        /* Remove padding since header is not fixed */
    }

    .nav-menu {
        top: 80px;
        /* Adjust for header height */
        height: calc(100vh - 80px);
    }

    .logo-img {
        height: 60px;
        /* Smaller logo on mobile */
    }

    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-image-col {
        margin-bottom: 40px;
    }

    .contact-text-col {
        padding-left: 0;
    }

    .title-underline {
        margin: 0 auto 30px;
    }

    .contact-description {
        text-align: center;
    }

    .phone-banner {
        font-size: 1.5rem;
        padding: 40px 20px 15px;
    }

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

    .prices-image-card {
        height: 400px;
        /* Reduced height for tablet */
    }

    .title-melhores {
        font-size: 2.5rem;
    }

    .title-precos {
        font-size: 3.5rem;
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .header {
        position: relative;
        /* Ensure relative on smaller screens too */
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .nav-link {
        font-size: 1.2rem;
        color: var(--text-color);
    }

    .header-container {
        flex-direction: row-reverse;
        /* Swap Logo and Actions to match reference */
    }

    .header-actions .btn {
        display: none;
        /* Hide Orçamento Rápido button */
    }

    .mobile-menu-btn {
        display: flex;
        /* Ensure flex for centering */
        align-items: center;
        justify-content: center;
        background-color: #1976d2;
        /* Match reference blue box */
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 8px;
        font-size: 1.5rem;
    }

    .logo-img {
        height: 65px;
        /* Increase size to be quite visible */
        width: auto;
    }

    .hero {
        height: auto;
        /* Allow content to dictate height on mobile */
        min-height: 100vh;
        /* Ensure it covers at least the viewport */
        padding: 120px 0 60px;
        /* Add padding for header and bottom spacing */
        background-attachment: scroll;
        /* Fix parallax issue on mobile */
        background-position: center top;
        /* Align image to top */
    }

    .hero-content {
        padding: 0 20px;
        /* Add side padding */
    }

    .hero-title {
        font-size: 2.2rem;
        /* Slightly larger for impact */
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
        /* Space between buttons */
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 16px;
        /* Larger touch target */
        font-size: 1rem;
    }

    .hero-features {
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
    }

    .hero-feature-item {
        font-size: 0.9rem;
        width: auto;
        /* Allow items to fit naturally */
        justify-content: center;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

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

    .problem-cards-grid {
        gap: 15px;
    }

    .problem-card {
        width: 45%;
        /* Use percentage for fluid grid */
        height: auto;
        aspect-ratio: 1/1;
    }

    .prices-image-card {
        height: 550px;
        /* Increased height to show more image */
    }

    .prices-image-bg {
        object-position: center top;
        /* Align image to top to avoid cutting heads */
    }

    .prices-overlay {
        padding: 30px 20px;
        /* Adjust padding for mobile */
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 64, 128, 0.8) 40%, rgba(0, 45, 90, 0.98) 100%);
        /* Darker gradient for text readability */
    }

    .overlay-title {
        font-size: 2.2rem;
        /* Smaller title on mobile */
    }

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

    .title-melhores {
        font-size: 2.2rem;
        margin-bottom: 5px;
        /* Ensure space below */
        display: inline-block;
    }

    .title-precos {
        font-size: 3.2rem;
        margin-left: 0;
        /* Center align or left align without offset */
        margin-top: -10px;
        /* Slight overlap for style, but controlled */
        line-height: 1;
    }

    .attendant-wrapper {
        width: 250px;
        height: 250px;
    }

    .zap-badge {
        width: 80px;
        height: 80px;
        right: -10px;
        bottom: 10px;
    }

    .zap-text-large {
        font-size: 1.4rem;
    }

    .phone-banner {
        font-size: 1.2rem;
        padding: 30px 15px 15px;
    }

    .contact-title {
        font-size: 1.8rem;
    }
}