/* Global Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #ff6b00;
    --accent-color: #ffc107;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --text-color: #333;
    --light-text: #fff;
    --border-radius: 5px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    line-height: 1.3;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

section:not(.hero):not(.about) h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

section:not(.hero):not(.about) h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
}

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

header.scrolled {
    padding: 4px 0;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
    /* Ajuste para cortar o espaço em branco do SVG */
    object-fit: contain;
    object-position: left center;
    max-width: 180px;
}

header.scrolled .logo img {
    height: 35px;
}

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

.contact-info a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.contact-info a i {
    margin-right: 8px;
    font-size: 18px;
}

.instagram i {
    color: #E1306C;
}

.whatsapp i {
    color: #25D366;
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--light-text);
    text-align: left;
    padding: 180px 0 100px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    z-index: -3;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/optimized/hero-bg-tiny.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: background-image 0.5s ease-in;
    will-change: background-image;
}

.hero-background.loaded {
    background-image: url('../img/optimized/hero-bg.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.85) 0%, rgba(255, 102, 0, 0.75) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
}

.hero-cta {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px;
}

.hero h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: var(--secondary-color);
}

.hero h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 18px 35px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.cta-button:hover {
    background-color: #ff8124;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
    color: var(--light-text);
}

.cupom-button {
    display: inline-block;
    background-color: transparent;
    color: var(--light-text);
    padding: 16px 35px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--light-text);
    cursor: pointer;
    text-align: center;
}

.cupom-button:hover {
    background-color: var(--light-text);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        max-width: 100%;
    }
    
    .hero h1:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-cta {
        margin-top: 40px;
        width: 100%;
        align-items: center;
    }
    
    .cta-button, .cupom-button {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 0 80px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero h2 {
        font-size: 22px;
    }
    
    .hero p {
        font-size: 18px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalAppear 0.4s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cupom-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border: 2px dashed var(--secondary-color);
    border-radius: 5px;
    display: inline-block;
}

.cupom-info {
    margin-bottom: 25px;
    color: #666;
}

.whatsapp-cupom-button {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    margin-top: 10px;
    text-transform: uppercase;
}

.whatsapp-cupom-button:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(18, 140, 126, 0.3);
}

/* Benefits Section */
.benefits {
    background-color: var(--light-color);
    text-align: center;
}

.benefits h2 {
    margin-bottom: 50px;
    font-size: 32px;
    color: var(--primary-color);
}

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

.benefit-item {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* About Section */
.about {
    position: relative;
    padding: 100px 0;
    color: var(--light-text);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../entregas/sala_Liliane.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(2px) brightness(0.4);
    transform: scale(1.05);
    z-index: -2;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.9) 0%, rgba(0, 86, 179, 0.8) 100%);
    z-index: -1;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about h2 {
    color: var(--light-text);
    margin-bottom: 30px;
}

.about h2:after {
    background-color: var(--secondary-color);
}

.about p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.about .highlight {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-color);
    margin: 30px 0;
}

.about .cta-button {
    margin-top: 20px;
}

/* Projetos - Carrossel e Categorias */
.projects h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
}

.project-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 10px;
}

.category-btn {
    background-color: #f5f5f5;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #333;
}

.category-btn:hover, .category-btn.active {
    background-color: #ff6600;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.project-carousel {
    margin: 0 -10px;
    padding: 20px 40px;
    margin-top: 30px;
    position: relative;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 300px;
    background-color: #f5f5f5; /* Cor de fundo enquanto a imagem carrega */
    display: flex;
    flex-direction: column;
}

.project-item a {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.project-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    animation: loading 1.5s infinite;
    display: block;
    z-index: 1;
}

@keyframes loading {
    to {
        transform: translateX(100%);
    }
}

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

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5), transparent);
    color: white;
    transition: all 0.3s ease;
    z-index: 2;
}

.project-info h3 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
}

.project-info p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7) !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: white !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.owl-nav button.owl-prev {
    left: -20px;
}

.owl-nav button.owl-next {
    right: -20px;
}

.owl-dots {
    margin-top: 20px;
}

.owl-dot span {
    background-color: #ddd !important;
    transition: all 0.3s ease;
}

.owl-dot.active span {
    background-color: var(--primary-color) !important;
    transform: scale(1.2);
}

/* Owl Carousel Customization */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8) !important;
    color: #ff6600 !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.owl-nav button:hover {
    background: white !important;
    color: #e55c00 !important;
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.owl-dots {
    margin-top: 20px !important;
}

.owl-dot span {
    background: #ddd !important;
    transition: all 0.3s ease !important;
}

.owl-dot.active span, .owl-dot:hover span {
    background: #ff6600 !important;
    transform: scale(1.2);
}

/* Lightbox Customization */
.lb-data .lb-caption {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.lb-data .lb-details {
    width: 100%;
    text-align: center;
}

.lb-data .lb-close {
    position: absolute;
    top: -30px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 3px;
}

.lb-data .lb-details {
    width: calc(100% - 40px);
}

@media (max-width: 768px) {
    .lb-data .lb-close {
        top: -35px;
        padding: 8px;
    }
    
    .project-carousel {
        padding: 10px 30px;
    }
    
    .project-item {
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    .project-item img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .project-info {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4), transparent);
        padding: 15px 10px 10px;
    }
    
    .category-btn {
        font-size: 12px;
        padding: 6px 15px;
        margin-bottom: 5px;
        border: 2px solid #ddd;
        font-weight: 500;
    }
    
    .category-btn:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    .category-btn.active {
        font-weight: 600;
    }
    
    .owl-nav button {
        width: 30px;
        height: 30px;
    }
}

/* Video Testimonials */
.video-testimonials {
    background-color: var(--light-color);
    padding: 80px 0;
    text-align: center;
}

.video-testimonials h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.video-testimonials .subtitle {
    margin-bottom: 40px;
    color: var(--dark-text);
}

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

.videos-grid.single-video {
    max-width: 700px;
    margin: 0 auto;
}

.video-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    cursor: pointer;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.play-overlay i {
    color: white;
    font-size: 64px;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-container:hover .play-overlay i {
    transform: scale(1.1);
    opacity: 1;
}

.video-container.playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-item h3 {
    margin: 15px 0 5px;
    color: var(--primary-color);
    font-size: 18px;
}

.video-item p {
    margin: 0 0 15px;
    color: var(--dark-text);
    font-size: 14px;
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .video-testimonials {
        padding: 50px 0;
    }
    
    .play-overlay i {
        font-size: 48px;
    }
}

/* Text Testimonials */
.testimonials {
    background-color: var(--light-color);
    padding: 100px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 700;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slides {
    position: relative;
    height: 300px;
    margin-bottom: 70px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.stars {
    color: var(--accent-color);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.location {
    color: #666;
    font-size: 14px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.control {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.control:hover {
    background-color: var(--secondary-color);
}

.carousel-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Contact Section */
.contact {
    background-color: var(--light-color);
    padding: 100px 0;
    position: relative;
}

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

.section-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-container {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-form-wrapper {
    padding: 40px;
    background-color: white;
}

.contact-form-wrapper form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group:nth-child(5),
.form-group:nth-child(6),
.form-group:nth-child(7) {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.checkbox-label input {
    width: auto;
    margin-top: 5px;
}

.submit-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-transform: uppercase;
    margin-top: 10px;
    grid-column: span 2;
}

.submit-button:hover {
    background-color: #e05a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.contact-info-wrapper {
    padding: 40px;
    background-color: var(--primary-color);
    color: white;
}

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

.contact-info-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
}

.contact-info-header p {
    opacity: 0.8;
}

.contact-info-content {
    margin-bottom: 30px;
}

.contact-info-wrapper .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
}

.contact-info-wrapper .info-item i {
    color: var(--accent-color);
    font-size: 20px;
    margin-right: 15px;
    margin-top: 3px;
}

.contact-info-wrapper .info-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: white;
}

.contact-info-wrapper .info-item p {
    margin-bottom: 5px;
    font-size: 14px;
    opacity: 0.8;
}

.contact-social {
    margin-bottom: 30px;
    text-align: center;
}

.contact-social h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: white;
}

.contact-social .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact-social .social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.contact-social .social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.contact-info-wrapper .whatsapp-cta {
    margin-top: 30px;
    text-align: center;
}

.contact-info-wrapper .whatsapp-button {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.contact-info-wrapper .whatsapp-button i {
    margin-right: 10px;
}

.contact-info-wrapper .whatsapp-button:hover {
    background-color: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 140, 126, 0.3);
}

/* Map Section */
.map {
    width: 100%;
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.map-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.map-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.map-button i {
    margin-right: 8px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 80px 0 20px;
}

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

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light-text);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-text);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-contact i {
    margin-right: 10px;
    font-size: 16px;
    color: var(--secondary-color);
}

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

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
}

/* FAQ Section */
.faq {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.faq-container {
    margin-top: 40px;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(var(--primary-color-rgb), 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-icon i {
    color: var(--primary-color);
    font-size: 16px;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 25px 20px 25px;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background-color: rgba(var(--primary-color-rgb), 0.05);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    height: auto;
}

/* Estilos para acessibilidade */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Melhorias de foco para acessibilidade */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-info {
        width: 100%;
        justify-content: center;
    }
    
    .hero {
        padding: 180px 0 60px;
    }
    
    .hero h1 {
        font-size: 30px;
    }
    
    .benefits-grid,
    .gallery,
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .testimonial-carousel {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 26px;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .benefit-item,
    .contact-form {
        padding: 20px;
    }
    
    .testimonial-carousel {
        height: 400px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}
