/* Global Styles */
:root {
    --primary: #2e92a6 ;
    --secondary: #e6c682;
    --accent: #ffd700;
    --dark: #333;
    --light: #f9f9f9;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    padding-top: 80px;
}

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

section {
    padding: 40px 0;
    position: relative;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Header Styles */
header {
    background: #020202;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgb(16 16 16 / 81%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e6c682;
    text-decoration: none;
    display: flex
;
    align-items: center;
}

.logo i {
    margin-right: 10px;
    color: var(--secondary);
    transition: transform 0.5s ease;
}

.logo:hover i {
    transform: rotate(360deg);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #e6c682;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

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

/* Language Selector */
.language-selector {
    position: relative;
    z-index: 100;
}

.language-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.language-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-flag {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 5px 0;
    margin: 5px 0 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.language-option:hover {
    background-color: #f5f5f5;
}

/* Buttons */
.btn, .cta-button, .submit-btn, .calendly-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn:hover, .cta-button:hover, .submit-btn:hover, .calendly-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 90, 205, 0.3);
}

.btn:active, .cta-button:active, .submit-btn:active, .calendly-btn:active {
    transform: translateY(1px);
}

.btn::after, .cta-button::after, .submit-btn::after, .calendly-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn:hover::after, .cta-button:hover::after, .submit-btn:hover::after, .calendly-btn:hover::after {
    transform: translateX(100%);
}

.btn-secondary {
    background: var(--primary);
}

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

/* Text Styles */
.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 1s ease;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 15px auto;
    border-radius: 2px;
}

/* Hero Sections */
.hero, .services-hero, .hero-section, .brands-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(106,76,147,0.9), rgba(138,90,68,0.9)), 
                url('https://img.freepik.com/premium-photo/minimalist-monochrome-wallpaper-4k-hd-photo_1193781-31021.jpg?ga=GA1.1.1003907492.1751635282&semt=ais_hybrid&w=740') no-repeat center center/cover;
    position: relative;
    color: white;
    text-align: center;
}

.services-hero {
    height: 60vh;
    background: linear-gradient(135deg, rgba(106,76,147,0.9), rgba(138,90,68,0.9)), 
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    margin-bottom: 80px;
    animation: fadeIn 1.5s ease;
}

.hero::before, .services-hero::before, .hero-section::before, .brands-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.services-hero::before {
    background: rgba(0,0,0,0.5);
}

.hero-content, .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease;
}

.services-hero .hero-content {
    animation: slideUp 1s ease;
}

.hero h1, .services-hero h1, .hero-content h1, .brands-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero p, .services-hero p, .hero-content p, .brands-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-btns .btn {
    animation: bounce 2s infinite;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Grid Layouts */
.services-grid, .features-grid, .gallery-grid, .benefits-grid, .portfolio-grid, .brands-grid, .advantage-grid, .region-grid {
    display: grid;
    gap: 30px;
}

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

.features-grid, .advantage-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.portfolio-grid, .brands-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.region-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

/* Cards */
.service-card, .feature-card, .benefit-card, .portfolio-item, .brand-card, .advantage-card, .region-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.service-card:hover, .feature-card:hover, .benefit-card:hover, .portfolio-item:hover, .brand-card:hover, .advantage-card:hover, .region-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-img, .portfolio-img, .brand-image {
    height: 200px;
    overflow: hidden;
}

.service-img img, .gallery-item img, .gallery-image, .portfolio-img img, .brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img, 
.gallery-item:hover img,
.gallery-item:hover .gallery-image,
.portfolio-item:hover .portfolio-img img,
.brand-card:hover .brand-image img {
    transform: scale(1.1);
}

.service-content, .feature-card, .portfolio-info, .brand-content {
    padding: 20px;
}

.service-content h3, .feature-card h3, .benefit-title, .portfolio-info h3, .brand-content h3, .advantage-card h3, .region-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.feature-icon, .benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon, 
.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    color: var(--secondary);
}

.benefit-card {
    padding: 30px;
    background: var(--light);
    z-index: 1;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 0.1;
}

.benefit-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Gallery - Fixed and Enhanced Version */
.gallery-item {
    position: relative;
    border-radius: 10px;
    height: 250px;
    overflow: hidden; /* Adicionado para conter os elementos absolutos */
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(93, 225, 251, 0.51); /* Corrigido formato da cor RGBA */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2; /* Garante que fique acima da imagem */
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease; /* Especificado apenas transform para performance */
    z-index: 3; /* Garante que fique acima do overlay */
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    margin-bottom: 5px;
    margin-top: 0; /* Adicionado para consistência */
}

.gallery-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0; /* Adicionado para consistência */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .gallery-item {
        height: 200px; /* Altura reduzida para mobile */
    }
    
    .gallery-overlay i {
        font-size: 1.5rem; /* Ícone menor em mobile */
    }
    
    .gallery-caption {
        padding: 15px; /* Padding reduzido */
    }
    
    .gallery-caption h4 {
        font-size: 1rem; /* Tamanho de fonte menor */
    }
    
    .gallery-caption p {
        font-size: 0.8rem; /* Tamanho de fonte menor */
    }
}

/* Touch device adjustments */
@media (hover: none) {
    .gallery-overlay {
        opacity: 0.7; /* Mostra parcialmente em dispositivos touch */
    }
    
    .gallery-caption {
        transform: translateY(0); /* Mostra sempre em dispositivos touch */
    }
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.testimonials .section-title h2 {
    background: linear-gradient(135deg, white, #f1f1f1);
}

.testimonials .section-title::after {
    background: white;
}

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

.testimonial-slide {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    display: none;
    animation: fadeIn 1s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.5;
}

.testimonial-text::before {
    position: absolute;
    top: -15px;
    left: -10px;
}

.testimonial-text::after {
    position: absolute;
    bottom: -30px;
    right: -10px;
}

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

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--accent);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: white;
    transform: scale(1.2);
}

/* CTA Sections */
.cta, .cta-section, .brands-cta {
    background: url('https://images.unsplash.com/photo-1605276374104-dee2a0ed3cd6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
    position: relative;
    color: white;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
      margin: 0px 0;
}

.cta-section {
    background: url('https://images.unsplash.com/photo-1600585152220-90363fe7e115?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    padding: 80px 0;
}

.brands-cta {
    background: var(--dark);
    padding: 80px 0;
    margin-bottom: 60px;
}

.cta::before, .cta-section::before, .brands-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(106, 90, 205, 0.8);
}

.cta-section::before {
    background: rgba(0,0,0,0.7);
}

.brands-cta::before {
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    opacity: 0.2;
}

.cta-content, .cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2, .cta-section h2, .brands-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p, .cta-section p, .brands-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btns .btn {
    animation: pulse 2s infinite;
}

.cta-btns .btn:nth-child(2) {
    animation-delay: 0.5s;
    background: transparent;
    border: 2px solid white;
}

.cta-btns .btn:nth-child(2):hover {
    background: white;
    color: var(--primary);
}

/* Location Highlights */
.location-highlights {
    text-align: center;
    padding: 0;
    background: white;
}

.location-icons {
    display: flex;
    justify-content: left;
    gap: 40px;
    margin-top: 20px;
    padding-bottom: 30px;
}

.location-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-icon i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    background: white;
    padding: 20px 0;
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
    animation: fadeInLeft 1s ease;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-text a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
}

.contact-form {
    flex: 1;
    background: white;
    padding: 0px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeInRight 1s ease;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(106, 90, 205, 0.2);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f9f9f9, #e6e6e6);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: fadeInLeft 1s ease;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.about-content {
    flex: 1;
    animation: fadeInRight 1s ease;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-list {
    margin-bottom: 30px;
}

.about-list li {
    margin-bottom: 10px;
    list-style: none;
    position: relative;
    padding-left: 30px;
}

.about-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
}

/* Process Section */
.process-container {
    margin: 60px 0;
    position: relative;
}

.process-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary);
    opacity: 0.2;
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(odd) {
    justify-content: flex-start;
    text-align: left;
}

.process-step:nth-child(even) {
    justify-content: flex-end;
    text-align: right;
}

.process-content {
    width: 45%;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.process-step:nth-child(odd) .process-content::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background: white;
    box-shadow: 5px -5px 10px rgba(0,0,0,0.05);
}

.process-step:nth-child(even) .process-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background: white;
    box-shadow: -5px 5px 10px rgba(0,0,0,0.05);
}

.process-number {
    position: absolute;
    top: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.process-step:nth-child(odd) .process-number {
    left: -15px;
}

.process-step:nth-child(even) .process-number {
    right: -15px;
}

.process-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
    text-transform: uppercase;
}

.process-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Services Tabs */
.services-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
}

.tab-button {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.tab-button.active {
    opacity: 1;
    color: var(--primary);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.8s ease;
}

.tab-content.active {
    display: block;
}

/* Service Section */
.service-section {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: var(--shadow);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient);
}

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

.service-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--gradient);
}

.service-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    margin: 80px 0;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary);
    text-transform: uppercase;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

.faq-question:hover {
    background: var(--light);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    background: var(--light);
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 50px 0 20px;
}

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

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #e6c682;
}
.footer-col p {
    margin-bottom: 15px;
    opacity: 0.8;
}

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

.footer-links a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    color: var(--secondary);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Portfolio Styles */
.portfolio-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1600585152220-90363fe7e115?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.5s ease-in-out;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106, 76, 147, 0.8) 0%, rgba(138, 90, 68, 0.8) 100%);
    z-index: 1;
    mix-blend-mode: multiply;
}

.portfolio-filters {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group h3 {
    width: 100%;
    margin-bottom: 10px;
    color: var(--primary);
}

.filter-btn {
    padding: 8px 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 76, 147, 0.3);
}

.portfolio-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    opacity: 1;
    transform: translateY(0);
    animation: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.portfolio-item.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay i {
    color: white;
    font-size: 2rem;
}

.portfolio-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-caption {
    transform: translateY(0);
}

.portfolio-caption h4 {
    margin-bottom: 5px;
}

.portfolio-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Project Detail Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
    border-radius: 10px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    z-index: 10;
    background: rgba(255,255,255,0.8);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.project-slider {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slider-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px;
    font-size: 0.9rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 5;
}

.slider-nav button {
    background: rgba(255,255,255,0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.slider-nav button:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 5;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

.project-details {
    padding: 40px;
}

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

.project-header h2 {
    font-size: 2rem;
    color: var(--primary);
}

.project-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.project-meta span {
    background: #f5f5f5;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.project-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.project-description h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    padding-bottom: 10px;
}

.project-description h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient);
}

.project-description p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-features {
    margin-top: 30px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.feature-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(106, 76, 147, 0.3);
}

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

.feature-item:hover i {
    color: white;
}

.project-sidebar {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    height: fit-content;
}

.testimonial {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    position: relative;
}

.testimonial::before {
    content: '\201C';
    font-size: 5rem;
    position: absolute;
    top: 10px;
    left: 10px;
    color: rgba(106, 76, 147, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.8rem;
    color: #666;
}

.cta-box {
    text-align: center;
    padding: 25px;
    background: var(--gradient);
    color: white;
    border-radius: 10px;
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: var(--primary);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Brands Section */
.brands-intro {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeIn 1s ease;
}

.brands-intro h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.brands-intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.brand-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.brand-card:nth-child(1) { animation-delay: 0.1s; }
.brand-card:nth-child(2) { animation-delay: 0.2s; }
.brand-card:nth-child(3) { animation-delay: 0.3s; }
.brand-card:nth-child(4) { animation-delay: 0.4s; }
.brand-card:nth-child(5) { animation-delay: 0.5s; }
.brand-card:nth-child(6) { animation-delay: 0.6s; }
.brand-card:nth-child(7) { animation-delay: 0.7s; }
.brand-card:nth-child(8) { animation-delay: 0.8s; }
.brand-card:nth-child(9) { animation-delay: 0.9s; }
.brand-card:nth-child(10) { animation-delay: 1s; }
.brand-card:nth-child(11) { animation-delay: 1.1s; }
.brand-card:nth-child(12) { animation-delay: 1.2s; }

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

.brand-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.brand-description {
    margin-bottom: 15px;
    color: #555;
}

.brand-specialty {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

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

.brand-link:hover i {
    transform: translateX(5px);
}

/* Our Advantage Section */
.our-advantage {
    background: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: -83px;
}

.our-advantage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="rgba(106, 76, 147, 0.05)" d="M30,10L50,30L70,10L90,30L70,50L90,70L70,90L50,70L30,90L10,70L30,50L10,30L30,10Z"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.advantage-container {
    position: relative;
    z-index: 1;
}

.advantage-container h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.advantage-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card:hover .advantage-icon {
    background: white;
    color: var(--primary);
}

.advantage-card:hover h3,
.advantage-card:hover p {
    color: white;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* Booking Section */
.booking-section {
    background: white;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

/* Map Section */
.map-section {
    margin-bottom: 60px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 500px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Regions Section */
.region-header {
    background: var(--gradient);
    color: white;
    padding: 20px;
    text-align: center;
}

.region-body {
    padding: 25px;
}

.region-body ul {
    list-style-type: none;
}

.region-body li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.region-body li:last-child {
    border-bottom: none;
}

.region-body li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary);
    font-size: 0.8rem;
}

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

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

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(106, 90, 205, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(106, 90, 205, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(106, 90, 205, 0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-form-container {
        flex-direction: column;
    }
    
    .hero-content h1, .services-hero h1, .brands-hero h1 {
        font-size: 2.8rem;
    }
    
    .service-section {
        padding: 40px 30px;
    }
    
    .process-content {
        width: 60%;
    }
    
    .about-container, .contact-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-img, .about-content, 
    .contact-info, .contact-form {
        flex: none;
        width: 100%;
    }
    
    .project-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 0;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgb(22, 22, 22);
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: all 0.3s ease;
        z-index: 1000;
        margin: 0;
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav ul li {
        margin: 0;
        padding: 15px 0;
        text-align: center;
    }
    
    nav ul li a {
        font-size: 1.2rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1, .services-hero h1, .brands-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p, .services-hero p, .brands-hero p {
        font-size: 1rem;
    }
    
    .hero-btns, .services-tabs {
        flex-direction: column;
        gap: 15px;
    }
    
   .section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    display: inline-block;
    text-transform: uppercase;
}
    
    .location-icons {
        gap: 20px;
    }
    
    .process-container::before {
        display: none;
    }
    
    .process-step {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .process-content {
        width: 100%;
    }
    
    .process-step:nth-child(odd) .process-number,
    .process-step:nth-child(even) .process-number {
        left: 50%;
        transform: translateX(-50%);
        top: -20px;
    }
    
    .process-step:nth-child(odd) .process-content::before,
    .process-step:nth-child(even) .process-content::before {
        display: none;
    }
    
    .language-dropdown {
        right: auto;
        left: 0;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero h1, .services-hero h1, .brands-hero h1 {
        font-size: 1.8rem;
    }
    
    .service-section, .cta-section h2 {
        font-size: 2rem;
    }
    
    .form-control {
        padding: 10px 12px;
    }
    
    textarea.form-control {
        min-height: 120px;
    }
    
    .filter-group {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .portfolio-grid, .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
    }
}
     /* Restante do seu CSS mobile */
        
        
        
        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient);
        }
        
        .contact-info h2 {
            color: var(--primary);
            margin-bottom: 30px;
            font-size: 2rem;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }
        
        .info-item:hover {
            transform: translateX(10px);
        }
        
        .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-right: 20px;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(106,76,147,0.3);
        }
        
        .info-content h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .info-content p, .info-content a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .info-content a:hover {
            color: var(--primary);
        }
        
        .booking-section {
            background: white;
            padding: 60px 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .booking-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }
        
        .booking-section h2 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 2rem;
        }
        
        .booking-section p {
            color: #666;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .calendly-btn {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(106,76,147,0.3);
            position: relative;
            overflow: hidden;
        }
        
        .calendly-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(106,76,147,0.4);
        }
        
        .calendly-btn i {
            margin-right: 10px;
        }
        
        .map-section {
            margin-bottom: 60px;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 500px;
        }
        
        .map-section iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .regions-section {
            margin-bottom: 80px;
        }
        
        .regions-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--primary);
            position: relative;
        }
        
        .regions-section h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--gradient);
            border-radius: 3px;
        }
        
        .region-card {
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            overflow: hidden;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .region-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .region-header {
            background: var(--gradient);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .region-header h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }
        
        .region-body {
            padding: 25px;
        }
        
        .region-body ul {
            list-style-type: none;
        }
        
        .region-body li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 25px;
        }
        
        .region-body li:last-child {
            border-bottom: none;
        }
        
        .region-body li::before {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 12px;
            color: var(--primary);
            font-size: 0.8rem;
        }
        
        .region-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
               nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: #000000de;
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
        z-index: 999;
        padding: 20px;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
}
            
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .region-grid {
                grid-template-columns: 1fr;
            }
         .contact-info {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
         /* Main Content Styles */
        .hero-section {
            background: linear-gradient(135deg, rgba(106,76,147,0.9), rgba(138,90,68,0.9)), 
                        url('https://images.unsplash.com/photo-1600585152220-90363fe7e115') center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.5) 100%);
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }
        
         .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}
        
        .hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 60px 0;
        }
           /* Gallery Section - Before & After */
    .gallery-section {
        margin: 80px 0 !important;
    }
    
    .gallery-title {
        text-align: center !important;
        font-size: 2rem !important;
        margin-bottom: 40px !important;
        color: var(--primary) !important;
        text-transform: uppercase !important;
    }
    
    .gallery-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* Força 2 colunas */
        gap: 30px !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }
    
    .transformation-item {
        background: white !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
        transition: all 0.4s ease !important;
    }
    
    .transformation-item:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
    }
    
   .comparison-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    cursor: ew-resize; /* Adiciona cursor indicando que pode arrastar */
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* Permite cliques passarem para o container */
}

.before-image {
    width: 50%;
    z-index: 2;
    pointer-events: none; /* Permite cliques passarem para o container */
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    cursor: ew-resize;
    z-index: 4;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    pointer-events: auto; /* Permite interação com o handle */
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.5);
    z-index: 3;
    transform: translateX(-50%);
    pointer-events: none;
}
    
    .transformation-content {
        padding: 20px !important;
    }
    
    .transformation-content h2 {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
        color: #333 !important;
    }
    
    .transformation-content p {
        color: #666 !important;
        margin-bottom: 15px !important;
        line-height: 1.5 !important;
    }
    
    .divider {
        height: 1px !important;
        background: #eee !important;
        margin: 15px 0 !important;
    }
    
    .view-btn {
        display: inline-block !important;
        padding: 8px 20px !important;
        background: var(--primary) !important;
        color: white !important;
        text-decoration: none !important;
        border-radius: 4px !important;
        transition: all 0.3s ease !important;
    }
    
    .view-btn:hover {
        background: var(--secondary) !important;
        transform: translateY(-2px) !important;
    }
    
    /* Responsividade */
    @media (max-width: 768px) {
        .gallery-container {
            grid-template-columns: 1fr !important; /* 1 coluna em mobile */
        }
    }
  
          /* Portfolio Hero Section */
        .portfolio-hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1600585152220-90363fe7e115?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
            animation: fadeIn 1.5s ease-in-out;
        }
        
        .portfolio-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(106, 76, 147, 0.8) 0%, rgba(138, 90, 68, 0.8) 100%);
            z-index: 1;
            mix-blend-mode: multiply;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .portfolio-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            animation: slideUp 1s ease-out;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
        }
        
        .portfolio-hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: slideUp 1s ease-out 0.2s forwards;
            opacity: 0;
        }
        
        /* Portfolio Filters */
        .portfolio-filters {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 50px;
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
        }
        
        .filter-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .filter-group:last-child {
            margin-bottom: 0;
        }
        
        .filter-group h3 {
            width: 100%;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .filter-btn {
            padding: 8px 20px;
            background: white;
            border: 1px solid #ddd;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(106, 76, 147, 0.3);
        }
        
        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }
        
  .portfolio-item {
    /* Mantenha todas as propriedades existentes */
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    
    /* Modifique a animação */
    opacity: 1; /* Mude de 0 para 1 */
    transform: translateY(0); /* Mude de 30px para 0 */
    animation: none; /* Remova a animação inicial */
    
    /* Adicione isso */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Crie uma classe separada para a animação */
.portfolio-item.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}
        
        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .portfolio-img {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .portfolio-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .portfolio-item:hover .portfolio-img img {
            transform: scale(1.1);
        }
        
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            opacity: 0;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        
        .portfolio-info {
            padding: 20px;
        }
        
        .portfolio-info h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .portfolio-info .category {
            display: inline-block;
            background: #f0f0f0;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .portfolio-info .location {
            display: flex;
            align-items: center;
            color: #666;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .portfolio-info .location i {
            margin-right: 5px;
            color: var(--secondary);
        }
        
        .view-details {
            display: inline-block;
            padding: 8px 20px;
            background: var(--primary);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
        }
        
        .view-details:hover {
            background: transparent;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(106, 76, 147, 0.3);
        }
        
        /* Project Detail Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 2000;
            overflow-y: auto;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .modal.show {
            display: block;
            opacity: 1;
        }
        
        .modal-content {
            background: white;
            width: 90%;
            max-width: 1000px;
            margin: 50px auto;
            border-radius: 10px;
            overflow: hidden;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            position: relative;
        }
        
        .modal.show .modal-content {
            transform: scale(1);
        }
        
        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            z-index: 10;
            background: rgba(255,255,255,0.8);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .close-modal:hover {
            background: var(--primary);
            color: white;
            transform: rotate(90deg);
        }
        
        .project-slider {
            height: 500px;
            position: relative;
            overflow: hidden;
        }
        
        .slider-container {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }
        
        .slider-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slider-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 15px;
            font-size: 0.9rem;
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 5;
        }
        
        .slider-nav button {
            background: rgba(255,255,255,0.7);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            color: var(--dark);
            transition: all 0.3s ease;
        }
        
        .slider-nav button:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }
        
        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 5;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background: white;
            transform: scale(1.2);
        }
        
        .project-details {
            padding: 40px;
        }
        
        .project-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .project-header h2 {
            font-size: 2rem;
            color: var(--primary);
        }
        
        .project-meta {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .project-meta span {
            background: #f5f5f5;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        
        .project-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        
        @media (max-width: 768px) {
            .project-content {
                grid-template-columns: 1fr;
            }
        }
        
        .project-description h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            padding-bottom: 10px;
        }
        
        .project-description h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gradient);
        }
        
        .project-description p {
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .project-features {
            margin-top: 30px;
        }
        
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .feature-item {
            background: #f9f9f9;
            padding: 15px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(106, 76, 147, 0.3);
        }
        
        .feature-item i {
            font-size: 1.2rem;
            color: var(--secondary);
        }
        
        .feature-item:hover i {
            color: white;
        }
        
        .project-sidebar {
            background: #f9f9f9;
            padding: 25px;
            border-radius: 10px;
            height: fit-content;
        }
        
        .testimonial {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            position: relative;
        }
        
        .testimonial::before {
            content: '\201C';
            font-size: 5rem;
            position: absolute;
            top: 10px;
            left: 10px;
            color: rgba(106, 76, 147, 0.1);
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-content {
            position: relative;
            z-index: 1;
            font-style: italic;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 1rem;
            margin-bottom: 5px;
        }
        
        .author-info p {
            font-size: 0.8rem;
            color: #666;
        }
        
        .cta-box {
            text-align: center;
            padding: 25px;
            background: var(--gradient);
            color: white;
            border-radius: 10px;
        }
        
        .cta-box h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .cta-box p {
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .cta-btn {
            display: inline-block;
            padding: 12px 30px;
            background: white;
            color: var(--primary);
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
     /* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary))!important;
    color: white;
    padding: 50px 0;
}

.testimonials-section .section-title h2 {
    background: linear-gradient(135deg, white, #f1f1f1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 10px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

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

.testimonial-author {
    font-weight: bold;
    font-size: 1.1rem;
}

.testimonial-rating {
    color: gold;
    margin-top: 5px;
}

.testimonial-date {
    opacity: 0.8;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding: 0 10px;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.5;
    position: absolute;
}

.testimonial-text::before {
    top: -15px;
    left: -5px;
}

.testimonial-text::after {
    bottom: -25px;
    right: -5px;
}

@media (max-width: 768px) {
    .testimonials-container {
        flex-direction: column;
    }
    
    .testimonial-card {
        min-width: 100% !important;
        margin-bottom: 20px;
    }
}

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

.image-modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.image-modal-content img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 5px;
    animation: zoomIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

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

/* Animation for modal */
@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Mobile adjustments for modal */
@media (max-width: 768px) {
    .image-modal-content img {
        max-width: 95%;
        max-height: 80%;
    }
    
    .close-modal {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}
.service-content h3 {
    text-transform: uppercase;
}

.container1 {
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
.sk-ww-thumbtack-reviews .sk-js-reviews{--font-family: Arial;
    --details-font-size: 15px;
    --title-font-size: undefinedpx;
    --title-all-caps: none;
    --show-article-box-shadow: none;
    --details-all-caps: none;
    --widget-bg-color: linear-gradient(135deg, var(--primary), var(--secondary))!important;
    --widget-font-color: undefined;
    --widget-link-color: undefined;
    --item-content-padding: 30px;
    --item-border-radius: 8px;
    --post-height: 300px;
    --details-bg-color: #2e2e2e;
    --details-font-color: #ffffff;
    --details-link-color: #ac9375;
    --details-link-hover-color: #d4ad7e;
    --details-secondary-font-color: undefined;
    --title-background-color: undefined;
    --pop-up-bg-color: #e6c682;
    --pop-up-font-color: #212529;
    --pop-up-link-color: #0280fe;
    --button-bg-color: #a08854;
    --button-text-color: #ffffff;
    --button-hover-text-color: #000000;
    --button-hover-bg-color: #ffffff;
    --button-padding-top-bottom: undefinedpx;
    --button-padding-left-right: undefinedpx;
    --tab-bg-color: undefined;
    --tab-text-color: undefined;
    --tab-padding-top-bottom: undefinedpx;
    --tab-padding-left-right: undefinedpx;
    --arrow-color: #808080;
    --arrow-background-color: #000000;
    --arrow-hover-color: undefined;
    --arrow-opacity: undefined;
    --column-count: 3;
    --star-color: #444444;
    --badge-font-color: undefined;
    --badge-bg-color: undefined;
    --write-a-review-button-text-color: undefined;
    --write-a-review-button-background-color: undefined;
}
.cta h2, .cta-section h2, .brands-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.cta-btns .btn {
    animation: pulse 2s infinite;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 1s ease;
    text-transform: uppercase;
}
 /* Hero Section */
        .about-hero {
            background: var(--gradient);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
            opacity: 0.2;
            z-index: 0;
        }
        
        .about-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            position: relative;
            animation: fadeInDown 1s ease;
        }
        
        .about-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            position: relative;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        /* Story Section */
        .story-section {
            padding: 80px 0;
            background: white;
            position: relative;
        }
        
        .story-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,0));
            z-index: 1;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient);
        }
        
        .story-content {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .story-text {
            flex: 1;
            animation: fadeInLeft 1s ease;
        }
        
        .story-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .story-image {
            flex: 1;
            position: relative;
            animation: fadeInRight 1s ease;
        }
        
        .story-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            transform: perspective(1000px) rotateY(-10deg);
            transition: all 0.5s ease;
        }
        
        .story-image:hover img {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .story-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--secondary);
            border-radius: 10px;
            z-index: -1;
            opacity: 0.5;
            transition: all 0.5s ease;
        }
        
        .story-image:hover::before {
            top: -10px;
            left: -10px;
            opacity: 0.8;
        }
        
        /* Team Section */
        .team-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, rgba(255,255,255,0), #f5f5f5);
            position: relative;
            z-index: 2;
        }
        
        .team-members {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .team-member {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.5s ease;
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .team-member:nth-child(1) { animation-delay: 0.1s; }
        .team-member:nth-child(2) { animation-delay: 0.3s; }
        .team-member:nth-child(3) { animation-delay: 0.5s; }
        .team-member:nth-child(4) { animation-delay: 0.7s; }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .member-image {
            height: 300px;
            overflow: hidden;
            position: relative;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.05);
        }
        
        .member-info {
            padding: 20px;
            text-align: center;
        }
        
        .member-info h3 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .member-info p.position {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .member-info p.bio {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 15px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .social-links a {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Values Section */
        .values-section {
            padding: 80px 0;
            background: white;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .value-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.5s ease;
            transform: scale(0.95);
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
        }
        
        .value-card:nth-child(1) { animation-delay: 0.1s; }
        .value-card:nth-child(2) { animation-delay: 0.3s; }
        .value-card:nth-child(3) { animation-delay: 0.5s; }
        .value-card:nth-child(4) { animation-delay: 0.7s; }
        
        .value-card:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            transition: all 0.5s ease;
        }
        
        .value-card:hover .value-icon {
            transform: rotateY(180deg);
            background: var(--secondary);
        }
        
        .value-card h3 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .value-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: url('https://images.unsplash.com/photo-1606744837616-56c9a5c6a6eb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80') center/cover no-repeat;
            position: relative;
            text-align: center;
            color: white;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(106, 76, 147, 0.8);
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: white;
            color: var(--primary);
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: pulse 2s infinite 1s;
        }
        
        .cta-button:hover {
            background: var(--secondary);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .transformation-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 400px;
}
 .before-image {
            z-index: 1;
        }
        
        .after-image {
            width: 50%;
            z-index: 2;
        }
        
        .slider-handle {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 4px;
            background: white;
            left: 50%;
            transform: translateX(-50%);
            cursor: ew-resize;
            z-index: 10;
            box-shadow: 0 0 10px rgba(0,0,0,0.3);
        }
        
        .slider-handle:after {
            content: '';
            position: absolute;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: white;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .slider-handle:before {
            content: '↔';
            position: absolute;
            color: var(--primary);
            font-weight: bold;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 11;
            font-size: 14px;
        }
         /* Gallery Section */
    .gallery-section {
        margin: 80px 0;
        padding: 0 20px;
    }
    
    .gallery-title {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 40px;
        color: var(--primary);
        text-transform: uppercase;
    }
    
    .gallery-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .transformation-item {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    
    .transformation-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }
    
   .comparison-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    cursor: ew-resize;
}

.comparison-image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-image {
    width: 50%;
    z-index: 2;
    clip-path: inset(0 0 0 0);
}

.after-image {
    width: 100%;
    z-index: 1;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    cursor: ew-resize;
    z-index: 3;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.5);
    z-index: 2;
    transform: translateX(-50%);
}
    
    .transformation-content {
        padding: 20px;
    }
    
    .transformation-content h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #333;
    }
    
    .transformation-content p {
        color: #666;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .divider {
        height: 1px;
        background: #eee;
        margin: 15px 0;
    }
    
    .view-btn {
        display: inline-block;
        padding: 8px 20px;
        background: var(--primary);
        color: white;
        text-decoration: none;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .view-btn:hover {
        background: var(--secondary);
    }
    
    @media (max-width: 768px) {
        .gallery-container {
            grid-template-columns: 1fr;
        }
    }
     /* Hero Section */
        .brands-hero {
            background: var(--gradient);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 60px;
        }
        
        .brands-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1916&q=80') center/cover;
            opacity: 0.15;
            z-index: 0;
        }
        
        .brands-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease;
    text-transform: uppercase;
}
        
        .brands-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        .hero-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="rgba(255,255,255,0.05)" d="M30,10L50,30L70,10L90,30L70,50L90,70L70,90L50,70L30,90L10,70L30,50L10,30L30,10Z"/></svg>');
            opacity: 0.3;
            z-index: 0;
        }
        
        /* Brands Grid */
        .brands-intro {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeIn 1s ease;
        }
        
      .brands-intro h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
}
        
        .brands-intro p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }
        
        .brand-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .brand-card:nth-child(1) { animation-delay: 0.1s; }
        .brand-card:nth-child(2) { animation-delay: 0.2s; }
        .brand-card:nth-child(3) { animation-delay: 0.3s; }
        .brand-card:nth-child(4) { animation-delay: 0.4s; }
        .brand-card:nth-child(5) { animation-delay: 0.5s; }
        .brand-card:nth-child(6) { animation-delay: 0.6s; }
        .brand-card:nth-child(7) { animation-delay: 0.7s; }
        .brand-card:nth-child(8) { animation-delay: 0.8s; }
        .brand-card:nth-child(9) { animation-delay: 0.9s; }
        .brand-card:nth-child(10) { animation-delay: 1s; }
        .brand-card:nth-child(11) { animation-delay: 1.1s; }
        .brand-card:nth-child(12) { animation-delay: 1.2s; }
        
        .brand-card:hover {
            transform: translateY(-10px) !important;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .brand-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
            transition: all 0.5s ease;
        }
        
        .brand-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
        }
        
        .brand-card:hover .brand-image {
            transform: scale(1.05);
        }
        
        .brand-name {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            z-index: 1;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        
        .brand-content {
            padding: 25px;
        }
        
        .brand-description {
            margin-bottom: 15px;
            color: #555;
        }
        
        .brand-specialty {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 15px;
        }
        
        .brand-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .brand-link i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .brand-link:hover {
            color: var(--secondary);
        }
        
        .brand-link:hover i {
            transform: translateX(5px);
        }
        
        /* Our Advantage Section */
        .our-advantage {
            background: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 60px;
        }
        
        .our-advantage::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="rgba(106, 76, 147, 0.05)" d="M30,10L50,30L70,10L90,30L70,50L90,70L70,90L50,70L30,90L10,70L30,50L10,30L30,10Z"/></svg>');
            opacity: 0.5;
            z-index: 0;
        }
        
        .advantage-container {
            position: relative;
            z-index: 1;
        }
        
       .advantage-container h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}
        
        .advantage-container h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient);
        }
        
        .advantage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .advantage-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .advantage-card:hover::before {
            opacity: 1;
        }
        
        .advantage-card:hover .advantage-icon {
            background: white;
            color: var(--primary);
        }
        
        .advantage-card:hover h3,
        .advantage-card:hover p {
            color: white;
        }
        
        .advantage-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
            transition: all 0.4s ease;
        }
        
        .advantage-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark);
            transition: color 0.4s ease;
        }
        
        .advantage-card p {
            color: #666;
            transition: color 0.4s ease;
        }
        
        /* CTA Section */
        .brands-cta {
            background: var(--dark);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 60px;
        }
        
        .brands-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
            opacity: 0.2;
            z-index: 0;
        }
        
        .cta-container {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-container h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }
        
        .cta-container p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            background: var(--gradient);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            animation: pulse 2s infinite 1s;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s ease;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }
        
        .cta-button:hover i {
            transform: translateX(5px);
        }

@media (max-width: 480px) {
    /* Extra Small Devices */
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Service cards full width */
    .service-card {
        margin-bottom: 20px;
    }
    
    /* Contact items stack */
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    /* Smaller padding */
    .features, .about, .services-gallery, .testimonials, .cta, .contact {
        padding: 50px 0;
    }
       /* Contact Form Mobile */
    .contact-form iframe {
        min-height: 600px;
    }
    
    /* Adjust header logo size */
    .logo img {
        height: 40px !important;
    }
    
    /* Stack footer columns */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}@media (max-width: 992px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-img {
        order: -1;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .comparison-container {
        height: 200px;
    }
    
    .gallery-title {
        font-size: 1.3rem !important;
    }
    .transformation-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    width: auto;
}
/* Story Section - Mobile Version */
.story-section {
    padding: 40px 0;
    background: white;
    position: relative;
}

.story-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px; /* Reduzido para mobile */
    background: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,0));
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 30px; /* Reduzido para mobile */
    position: relative;
}

.section-title h2 {
    font-size: 1.8rem; /* Tamanho menor para mobile */
    color: var(--primary);
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px; /* Ajuste menor */
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* Largura reduzida */
    height: 2px; /* Espessura reduzida */
    background: var(--gradient);
}

.story-content {
    display: flex;
    flex-direction: column; /* Empilha verticalmente em mobile */
    align-items: center;
    gap: 30px; /* Espaçamento reduzido */
    margin-bottom: 40px; /* Reduzido para mobile */
    padding: 0 15px; /* Adicionado padding lateral */
}

.story-text {
    flex: 1 1 100%; /* Ocupa toda a largura */
    width: 100%;
    animation: fadeInLeft 1s ease;
}

.story-text p {
    margin-bottom: 15px; /* Reduzido para mobile */
    font-size: 1rem; /* Tamanho menor */
    line-height: 1.5; /* Ajuste de espaçamento */
    text-align: center; /* Centralizado em mobile */
}

.story-image {
    flex: 1 1 100%; /* Ocupa toda a largura */
    width: 90%; /* Largura reduzida */
    position: relative;
    animation: fadeInRight 1s ease;
    margin: 0 auto; /* Centralizado */
}

.story-image img {
    width: 100%;
    border-radius: 8px; /* Bordas ligeiramente menores */
    box-shadow: 0 8px 20px rgba(0,0,0,0.1); /* Sombra mais suave */
    transform: perspective(1000px) rotateY(-5deg); /* Efeito 3D mais sutil */
    transition: all 0.5s ease;
}
}

/* Efeitos de hover removidos para dispositivos touch */
@media (hover: hover) {
    .story-image:hover img {
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .story-image:hover::before {
        top: -10px;
        left: -10px;
        opacity: 0.8;
    }
}

.story-image::before {
    content: '';
    position: absolute;
    top: -10px; /* Reduzido para mobile */
    left: -10px; /* Reduzido para mobile */
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary); /* Borda mais fina */
    border-radius: 8px; /* Bordas ligeiramente menores */
    z-index: -1;
    opacity: 0.5;
    transition: all 0.5s ease;
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .story-section {
        padding: 30px 0;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .story-text p {
        font-size: 0.9rem;
    }
    
    .story-image {
        width: 100%;
    }
}

/* About Us Page Specific Styles */
/* Hero Section */
.about-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(46, 146, 166, 0.9) 0%, rgba(230, 198, 130, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
    color: white;
    text-align: center;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background-color: white;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-text {
    flex: 1;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.story-text p:first-child {
    animation: fadeInLeft 1s ease;
}

.story-text p:last-child {
    animation: fadeInLeft 1s ease 0.3s forwards;
    opacity: 0;
}

.story-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    animation: fadeInRight 1s ease;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Founders Section */
.founders-section {
    padding: 100px 0;
    background-color: #ecfffd;
}

.founders-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founders-text {
    max-width: 800px;
    margin-bottom: 50px;
}

.founders-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.founders-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.founder-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 280px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.founder-image {
    height: 300px;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.founder-card:hover .founder-image img {
    transform: scale(1.1);
}

.founder-info {
    padding: 20px;
    text-align: center;
}

.founder-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.founder-info p {
    color: #666;
    font-style: italic;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: white;
}

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

.value-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: calc(var(--order) * 0.2s);
}

.value-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: var(--secondary);
    transform: rotateY(180deg);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.value-card p {
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(46, 146, 166, 0.05) 0%, rgba(230, 198, 130, 0.05) 100%);
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

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

.testimonial-author {
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-rating {
    color: #ffc107;
}

.testimonial-date {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: var(--primary);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    animation: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .story-content {
        flex-direction: column;
    }
    
    .story-text, .story-image {
        flex: none;
        width: 100%;
    }
    
    .story-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .founders-images {
        flex-direction: column;
        align-items: center;
    }
    
    .founder-card {
        width: 100%;
        max-width: 350px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 150px 0 80px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}