/* Global Styles */
:root {
    --primary-color: #00c853;
    --secondary-color: #ff6f00;
    --dark-color: #000000;
    --light-color: #ffffff;
    --gray-color: #f4f4f4;
    --gray-dark: #333333;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    line-height: 1.2;
}

h1 {
    font-size: 48px;
    font-weight: bold;
}

h2 {
    font-size: 36px;
    font-weight: bold;
}

h3 {
    font-size: 24px;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.primary-btn:hover {
    background-color: #00a844;
}

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

.secondary-btn:hover {
    background-color: #e56300;
}

/* Header */
header {
    background-color: transparent;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.logo {
    padding-left: 40px;
}

.logo img {
    height: 50px;
}

.menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 30px;
}

.menu li {
    margin-left: 30px;
}

.menu a {
    color: #ff6f00;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6f00;
    transition: width 0.3s ease;
}

.menu a:hover:after,
.menu a.active:after {
    width: 100%;
}

.menu a.active {
    color: #ff6f00;
}

.language-selector {
    position: relative;
    margin-left: 30px;
}

.current-language {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #ff6f00;
    transition: color 0.3s ease;
}

.current-language i {
    margin-left: 8px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #FFFFFF;
    width: 150px;
    border-radius: 5px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.language-dropdown li {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #000000;
}

.language-dropdown li:hover {
    background-color: #f4f4f4;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 24px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    color: var(--light-color);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

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

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    padding-top: 80px;
}

.hero h1 {
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h3 {
    max-width: 600px;
    margin: 0 auto 30px;
    font-weight: normal;
}

/* Benefits Section */
.benefits {
    background-color: var(--gray-color);
}

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

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    text-align: center;
    padding: 80px 0;
    background-color: #000000;
}

.services h2 {
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.services-swiper-container {
    position: relative;
    width: 100%;
    padding: 20px 0 50px;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-hex {
    position: relative;
    width: 90%;
    max-width: 300px;
    padding-top: 115.47%; /* Proporção para hexágono regular */
    margin: 0 auto;
}

.service-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-content:hover {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 30px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.service-overlay h3 {
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.service-content:hover .service-overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Swiper Navigation & Pagination Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive Swiper Adjustments */
@media (max-width: 768px) {
    .service-hex {
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .service-hex {
        max-width: 220px;
    }
    
    .service-overlay h3 {
        font-size: 1rem;
    }
}

/* Luxury Car Section */
.luxury-car {
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
}

.car-image {
    margin-top: 30px;
    position: relative;
}

.car-image img {
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Specialized Workshop Section */
.specialized-workshop {
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.workshop-icon {
    font-size: 40px;
    color: var(--light-color);
    margin-bottom: 20px;
}

/* About Us Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text .btn {
    margin-top: 20px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Brands Section */
.brands {
    background-color: var(--gray-color);
    text-align: center;
}

.brands h2 {
    margin-bottom: 50px;
}

.brands-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand-logo {
    width: calc(100% / 9);
    padding: 0 15px;
    margin-bottom: 30px;
}

.brand-logo img {
    max-height: 60px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-logo:hover img {
    filter: grayscale(0%);
}

/* Workshop Video Section */
.workshop-video {
    padding: 0;
}

.video-container {
    position: relative;
    height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/workshop-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--light-color);
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

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

.footer-column h3 {
    margin-bottom: 25px;
    font-size: 20px;
}

.contact-info li,
.footer-links li {
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-media a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--gray-dark);
    border-radius: 50%;
    margin-right: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.social-media a:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid var(--gray-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-links-bottom a {
    margin-right: 20px;
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
    .benefits-grid,
    .workshop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        gap: 30px;
    }
    
    .brand-logo {
        width: calc(100% / 5);
    }
}

@media (max-width: 768px) {
    header {
        height: 70px;
    }
    
    .logo {
        padding-left: 0;
    }
    
    .menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--dark-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        transition: left 0.3s ease;
    }
    
    .menu.active {
        left: 0;
    }
    
    .menu li {
        margin: 0 0 20px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .language-selector {
        margin-left: 0;
        margin-right: 20px;
    }
    
    /* Mobile menu for scrolled state */
    header.scrolled .menu {
        background-color: var(--light-color);
    }
    
    header.scrolled .menu a {
        color: var(--dark-color);
    }
    
    header.scrolled .menu a.active {
        color: var(--secondary-color);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: 2;
    }
    
    .about-text {
        order: 1;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links-bottom {
        margin-bottom: 15px;
    }
    
    /* Adjust text size for better readability */
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .benefits-grid,
    .workshop-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-logo {
        width: calc(100% / 3);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
    
    .video-container {
        height: 350px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .hero h3 {
        font-size: 18px;
    }
}

/* Page Banner */
.page-banner {
    background-color: var(--dark-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    text-align: center;
    padding: 150px 0 60px;
}

.page-banner h1 {
    margin-bottom: 15px;
}

/* Services List Page */
.services-list {
    background-color: var(--light-color);
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-details h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-details p {
    margin-bottom: 20px;
}

.service-details ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-details ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    list-style-type: none;
}

.service-details ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
}

/* CTA Section */
.cta {
    background-color: var(--secondary-color);
    color: var(--light-color);
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background-color: var(--light-color);
    color: var(--secondary-color);
}

.cta .btn:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
}

/* About Us Page */
.about-page {
    background-color: var(--light-color);
}

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

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

.about-section h2 {
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.about-section p {
    margin-bottom: 20px;
}

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

.team-section h2 {
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-member h3 {
    margin-bottom: 10px;
}

.team-member p {
    color: var(--gray-dark);
}

/* Taller Page */
.taller-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.equipment-section {
    margin-top: 80px;
}

.equipment-section h2 {
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.equipment-item {
    display: flex;
    align-items: flex-start;
}

.equipment-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-right: 20px;
}

.equipment-content h3 {
    margin-bottom: 15px;
}

/* Contact Page */
.contact-page {
    background-color: var(--light-color);
}

.contact-info-box {
    background-color: var(--gray-color);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 60px;
}

.contact-info-box h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

.contact-content h3 {
    margin-bottom: 10px;
}

.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
}

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

/* Privacy Policy Page */
.privacy-policy {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-policy h2 {
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.privacy-policy p {
    margin-bottom: 20px;
}

.privacy-policy ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-policy ul li {
    margin-bottom: 10px;
}

/* Media Queries for inner pages */
@media (max-width: 768px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .taller-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .taller-gallery {
        grid-template-columns: 1fr;
    }
}

/* Header Scrolled State */
header.scrolled {
    background-color: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header.scrolled .menu a {
    color: #000000;
}

header.scrolled .menu a.active {
    color: #ff6f00;
}

header.scrolled .current-language {
    color: #000000;
}

header.scrolled .mobile-menu-btn {
    color: #000000;
}

header.scrolled .language-dropdown {
    background-color: #FFFFFF;
}

header.scrolled .language-dropdown li {
    color: #000000;
}

header.scrolled .language-dropdown li:hover {
    background-color: #f4f4f4;
}

.services .btn.secondary-btn {
    margin-top: 20px;
    display: inline-block;
} 