/*
Theme Name: Skyline
Theme URI: https://example.com/skyline/
Author: Your Name or Company
Author URI: https://example.com/
Description: A custom WordPress theme named Skyline for a luxury limo service.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-theme, responsive-layout, luxury, limo, transportation, modern, premium
Text Domain: skyline
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Normalize & Basics
2.0 Typography
3.0 Layout
    3.1 Container
4.0 Header
    4.1 Site Branding
    4.2 Main Navigation
5.0 Sections (General)
6.0 Homepage Specific
    6.1 Hero Section
7.0 Footer
8.0 Accessibility
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Normalize & Basics
--------------------------------------------------------------*/
body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-main);
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    color: #B08D57; /* Gold accent */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: #9A7C4F; /* Darker gold for hover/focus */
}

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

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    line-height: 1.3;
    color: var(--color-headings);
}

h1, .h1 { font-size: 3em; /* Larger for impact */ }
h2, .h2 { font-size: 2.5em; }
h3, .h3 { font-size: 2em; }
h4, .h4 { font-size: 1.75em; }
h5, .h5 { font-size: 1.5em; }
h6, .h6 { font-size: 1.25em; }

p {
    margin-bottom: 1.25em;
}

/*--------------------------------------------------------------
3.0 Layout
--------------------------------------------------------------*/

/* 3.1 Container */
.container {
    width: 90%;
    max-width: 1280px; /* Slightly wider max-width for a premium feel */
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/*--------------------------------------------------------------
4.0 Header
--------------------------------------------------------------*/
.site-header {
    position: absolute;
    width: 100%;
    z-index: 100;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1em;
    padding-bottom: 1em;
}

.site-branding {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.custom-logo {
    max-height: 50px; /* Altura máxima para a logo. Ajuste conforme necessário. */
    width: auto; /* Mantém a proporção da imagem */
    display: block; /* Remove qualquer espaço extra abaixo da imagem */
    /* Removido display:none daqui, será controlado por classes específicas */
}

.custom-logo.logo-black {
    display: none; /* Esconde a logo preta por padrão */
}

.custom-logo.logo-white {
    display: block; /* Garante que a logo branca seja visível por padrão */
}

.site-title,
.site-description {
    display: none;
}

.main-navigation {
    text-align: center;
    margin-top: 10px;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Alinha os itens do menu horizontalmente */
}

.main-navigation ul li {
    margin-left: 20px; /* Espaçamento entre os itens do menu, ajuste conforme necessário */
}

.main-navigation ul li:first-child {
    margin-left: 0; /* Remove a margem do primeiro item */
}

.main-navigation a {
    display: block;
    padding: 10px;
    font-weight: 700;
    color: #ffffff; /* Assuming white text over dark hero */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.main-navigation a:hover,
.main-navigation a:focus {
    color: #B08D57; /* Gold accent on hover */
}

/* Header Contact Group */
.header-contact-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}

/* Header Phone Contact */
.header-phone-contact {
    white-space: nowrap;
}

.header-phone-contact a {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95em;
    letter-spacing: 0.03em;
}

.header-phone-contact a i {
    margin-right: 8px;
    font-size: 1em;
    color: #B08D57;
}

.header-phone-contact a:hover,
.header-phone-contact a:focus {
    color: #B08D57;
}

.header-phone-contact a:hover i,
.header-phone-contact a:focus i {
    color: #ffffff;
}

/* Header Instagram Link */
.header-instagram-link {
    color: #ffffff;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.header-instagram-link:hover {
    color: #B08D57;
}

/* Scrolled states */
.site-header.scrolled .header-phone-contact a {
    color: #222222;
}

.site-header.scrolled .header-phone-contact a:hover,
.site-header.scrolled .header-phone-contact a:focus {
    color: #B08D57;
}

.site-header.scrolled .header-phone-contact a i {
    color: #B08D57;
}

.site-header.scrolled .header-phone-contact a:hover i,
.site-header.scrolled .header-phone-contact a:focus i {
    color: #222222;
}

.site-header.scrolled .header-instagram-link {
    color: #222222;
}

.site-header.scrolled .header-instagram-link:hover {
    color: #B08D57;
}

.site-header.scrolled {
    position: fixed; /* Change to fixed to stick to top */
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding-top: 15px; /* Adjust padding for scrolled state */
    padding-bottom: 15px;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled .site-branding .custom-logo.logo-white {
    display: none; /* Esconde a logo branca quando o header está scrollado */
}

.site-header.scrolled .site-branding .custom-logo.logo-black {
    display: block; /* Mostra a logo preta quando o header está scrollado */
}

.site-header.scrolled .site-title,
.site-header.scrolled .site-description,
.site-header.scrolled .main-navigation a {
    color: #222222; /* Dark text for light background */
}

.site-header.scrolled .main-navigation a:hover,
.site-header.scrolled .main-navigation a:focus {
    color: #B08D57; /* Gold accent on hover still works */
}

/*--------------------------------------------------------------
8.0 Accessibility
--------------------------------------------------------------*/
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/*--------------------------------------------------------------
6.0 Homepage Specific
--------------------------------------------------------------*/

/* 6.1 Hero Section */
.hero-section {
    position: relative;
    background-color: #111111; /* Fallback color if image/video fails */
    /* The background-image set below now acts as a fallback for the video OR poster for the video element */
    background-image: url('https://images.unsplash.com/photo-1533106418989-88406c7cc8ca?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80'); 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #ffffff;
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    text-align: center;
    overflow: hidden; /* Ensures no overflow from pseudo-elements or inner content */
}

.hero-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0; /* Behind the overlay and content */
}

.hero-fullscreen {
    min-height: 100vh; /* Full viewport height */
    padding-top: 80px; /* Space for absolute header, adjust as needed */
    padding-bottom: 80px;
}

/* Placeholder image from Unsplash - replace with a dynamic image later via Customizer or ACF */
/* .hero-section {\n    background-image: url(\'https://images.unsplash.com/photo-1533106418989-88406c7cc8ca?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80\'); \n    /* Example: Dark, modern city or car shot *\/\n/* } */ /* This is now handled by the main .hero-section rule above or the video poster attribute */

/* Optional: Add a subtle overlay for better text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.55); /* Slightly increased darkness for video */
    z-index: 1; /* Overlay is above video, below content */
}

.hero-content-container {
    position: relative; /* To sit above the overlay */
    z-index: 2; /* Content is above video and overlay */
    max-width: 800px; /* Control width of text content */
}

.hero-title {
    font-size: 3.5em; /* Even larger for more impact */
    font-weight: 700; /* Playfair is already bold, ensure it's applied */
    color: #ffffff;
    margin-bottom: 0.3em;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3); /* Subtle text shadow for depth */
}

.hero-subtitle {
    font-size: 1.3em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5em;
    line-height: 1.7;
}

/* Hero Rotating Subtitle Styles */
.hero-rotating-subtitle {
    position: relative;
    min-height: 100px; /* Adjust as needed based on longest text and font size */
    margin-bottom: 1.5em; /* Same as original hero-subtitle */
    font-size: 1.3em; /* From original .hero-subtitle */
    font-family: 'Montserrat', sans-serif; /* From original .hero-subtitle */
    font-weight: 400; /* From original .hero-subtitle */
    color: rgba(255, 255, 255, 0.9); /* From original .hero-subtitle */
    line-height: 1.7; /* From original .hero-subtitle */
}

.hero-rotating-subtitle .rotating-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out; /* Slower, smoother transition */
    /* Ensure text is centered if the main hero content is centered */
    text-align: center; 
}

.hero-rotating-subtitle .rotating-item.active {
    opacity: 1;
    visibility: visible;
}

.hero-rotating-subtitle .highlight-ten-years {
    color: #B08D57; /* Gold accent color from the theme */
    font-weight: bold; /* Optional: make it bolder */
}

.btn {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 15px 35px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #B08D57; /* Gold accent */
    color: #ffffff;
    border-color: #B08D57;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #9A7C4F; /* Darker gold */
    border-color: #9A7C4F;
    color: #ffffff;
    transform: translateY(-3px); /* Slightly more pronounced lift */
    box-shadow: 0 6px 15px rgba(0,0,0,0.2); /* Enhanced shadow */
}

.hero-cta {
    margin-top: 20px;
}

/* Scroll Down Indicator */
.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll-down a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 10px;
}

.hero-scroll-down span {
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
}

.hero-scroll-down span::before,
.hero-scroll-down span::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 10px;
    background-color: #fff;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.hero-scroll-down span::before {
    top: 0;
    transform: translateX(-50%) rotate(45deg);
    transform-origin: top center;
}

.hero-scroll-down span::after {
    top: 0;
    left: calc(50% + 1px);
    transform: rotate(-45deg);
    transform-origin: top center;
}

@keyframes subtleScrollAnimation {
    0% {
        opacity: 0;
        transform: translateY(-8px) scale(0.95);
    }
    30% {
        opacity: 1;
    }
    70% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(8px) scale(0.95);
    }
}

.hero-scroll-down span {
    animation: subtleScrollAnimation 2.5s infinite ease-in-out;
    animation-delay: 1s;
}

/* General Site Section Styling */
.site-section {
    padding: 100px 0;
}

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

.lead-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-text-lead);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -0.75rem;
    margin-bottom: 50px;
}

/* Visually hidden class for accessibility */
.visually-hidden {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* 6.2 Intro Blurb Section (Follows Hero Section) */
.intro-blurb-section {
    background-color: #ffffff; /* Explicitly white, or could be a very light gray e.g. #f9f9f9 */
}

.intro-blurb-section .intro-text {
    /* Using .lead-text styling defined above */
}

/* 6.3 Quick Links Section */
.quick-links-section {
    background-color: #ffffff !important;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.quick-links-section::before {
    display: none;
}

.quick-links-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
}

.quick-links-intro p {
    font-family: 'Playfair Display', serif;
    font-size: 1.4em;
    line-height: 1.8;
    color: #333333;
    margin: 0;
}

.quick-links-intro .company-name {
    color: #B08D57;
    font-weight: 700;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.quick-link-item {
    display: block;
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid rgba(176, 141, 87, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.quick-link-item:hover {
    transform: translateY(-5px);
    border-color: #B08D57;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.quick-link-icon {
    font-size: 2.5em;
    color: #B08D57;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.quick-link-item:hover .quick-link-icon {
    transform: scale(1.1);
}

.quick-link-title {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333333;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.quick-link-description {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    line-height: 1.5;
    color: #666666;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.quick-link-item:hover .quick-link-description {
    color: #333333;
}

@media (max-width: 768px) {
    .quick-links-intro {
        margin-bottom: 60px;
    }
    .quick-links-intro p {
        font-size: 1.2em;
    line-height: 1.6;
    }
    .quick-links-section {
        padding: 60px 0;
    }
    
    .quick-link-item {
        padding: 40px 25px;
    }
    
    .quick-link-icon {
        font-size: 3em;
    }
    
    .quick-link-title {
        font-size: 1.8em;
    }
}

/* 6.4 Our Fleet Section */
.our-fleet-section {
    background-color: #f8f9fa !important;
    padding: 100px 0;
}

.our-fleet-section .section-title {
    font-size: 3.2em;
    margin-bottom: 0.5em;
    color: #1A1A1A;
    text-transform: none;
    letter-spacing: -0.02em;
}

.our-fleet-section .section-title::after {
    display: none;
}

.our-fleet-section .section-subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 60px;
    font-family: 'Montserrat', sans-serif;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 20px;
}

.vehicle-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(176, 141, 87, 0.1);
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(176, 141, 87, 0.15);
    border-color: rgba(176, 141, 87, 0.3);
}

.vehicle-image-container {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.vehicle-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vehicle-card:hover .vehicle-image-container img {
    transform: scale(1.08);
}

.vehicle-energy-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #B08D57;
    color: #ffffff;
    padding: 8px 16px;
    font-size: 0.85em;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(176, 141, 87, 0.2);
}

.vehicle-content {
    padding: 30px;
}

.vehicle-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

.vehicle-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 15px;
}

.vehicle-features li {
    display: flex;
    align-items: center;
    color: #666666;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95em;
}

.vehicle-features li i {
    color: #B08D57;
    margin-right: 12px;
    font-size: 1.1em;
}

.explore-fleet-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 15px 35px;
    background-color: #B08D57;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(176, 141, 87, 0.2);
}

.explore-fleet-btn:hover {
    background-color: #96774A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(176, 141, 87, 0.3);
}

/* 6.5 Why Us Section */
.why-us-section {
    background-color: #ffffff !important;
    padding: 100px 0;
}

.why-us-section .section-subtitle {
    margin-bottom: 60px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid for why-us items */
    gap: 40px; /* Space between items */
}

.why-us-item {
    text-align: center; /* Center content within each item */
    padding: 30px;
    background-color: #ffffff; /* White background for items */
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Unified transition */
}

.why-us-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08); /* Refined shadow */
}

.why-us-item:hover .why-us-icon {
    transform: scale(1.1); /* Example: Slight scale on icon */
}

.why-us-icon {
    font-size: 2.5em; /* Large icon */
    color: #B08D57; /* Gold accent color for icons */
    margin-bottom: 20px;
    line-height: 1; /* Ensure icon doesn't add extra vertical space */
    transition: transform 0.3s ease-in-out; /* For hover effect */
}

.why-us-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em; /* Slightly smaller than vehicle names, but still prominent */
    font-weight: 700;
    color: #1A1A1A;
    margin-top: 0;
    margin-bottom: 10px;
}

.why-us-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95em;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 0; /* Remove bottom margin if it's the last element */
}

/* 6.6 Core Values Section */
.dark-section {
    background-color: #1A1A1A !important;
    color: #f0f0f0;
    padding: 100px 0;
}

.dark-section .section-title {
    color: #ffffff;
}

/* Specific lead text styling for dark sections if needed */
.dark-section .lead-text,
.inverted-lead-text {
    color: rgba(255, 255, 255, 0.85); /* Lighter text for subtitles on dark background */
    max-width: 700px; /* Slightly adjusted max-width for lead text on dark sections */
}

.core-values-section .section-subtitle {
    margin-bottom: 60px;
}

.core-values-grid {
    display: grid;
    gap: 25px; /* Reduced gap */
    margin-bottom: 50px;
    grid-template-columns: 1fr; /* Default 1 coluna (mobile-first) */
}

@media (min-width: 768px) { /* Tablets - 2 colunas */
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) { /* Desktops - 3 colunas */
    .core-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.core-value-item {
    background-color: #2C2C2C; /* Solid dark gray background */
    padding: 25px 20px; /* Adjusted padding */
    border-radius: 6px; /* Slightly less rounded for a blockier, modern feel */
    text-align: center;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent; /* Base for hover border */
}

.core-value-item:hover {
    background-color: #383838; /* Slightly lighter on hover */
    border-color: var(--color-accent); /* Gold accent border on hover */
    transform: translateY(-4px); /* Subtle lift effect */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Subtle shadow for depth on hover */
}

.core-value-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3em; /* Adjusted for better fit */
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 0; /* No margin if only title is present */
    line-height: 1.4;
}

.core-values-commitment {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px; /* Space above commitment message */
}

/* 6.7 Testimonials Section */
.testimonials-section {
    background-color: #f8f9fa !important;
    padding: 100px 0;
}

.testimonials-section .section-subtitle {
    margin-bottom: 60px;
}

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

.testimonial-card {
    background-color: #f8f9fa; /* Light gray background for cards, or keep white and add border */
    padding: 35px;
    border-radius: 8px;
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.05); Optional: if cards are white on white bg */
    border-left: 5px solid #B08D57; /* Gold accent border on the left */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes author to the bottom */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-left-color 0.3s ease-in-out; /* Added transition */
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
    border-left-color: #9A7C4F; /* Darker gold border on hover */
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05em; /* Slightly larger for emphasis */
    line-height: 1.7;
    color: #333333;
    font-style: italic; /* Common styling for quotes */
    margin: 0;
}

.testimonial-text::before {
    /* Optional: Large quotation mark using pseudo-element */
    /* content: '\201C'; 
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    color: #B08D57;
    opacity: 0.2;
    display: block;
    margin-bottom: -10px; 
    line-height: 1; */
}

.testimonial-author {
    text-align: right;
}

.author-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2em;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

/* Swiper Testimonials Styles */
.testimonials-swiper {
    position: relative; /* Needed for absolute positioning of nav buttons */
    padding-bottom: 60px; /* Space for pagination */
}

.testimonials-swiper .swiper-slide {
    height: auto; /* Ensure slides accommodate content height */
    padding: 5px; /* Add a little padding for box-shadow visibility if card has one */
}

.testimonials-swiper .testimonial-card {
    width: 100%; /* Make card fill the slide */
    margin-bottom: 0; /* Remove margin if any, as swiper handles spacing */
    height: 100%; /* Make card take full height of slide, useful if slides have different content length */
}

.swiper-pagination {
    bottom: 20px !important; /* Position pagination */
}

.swiper-pagination .swiper-pagination-bullet {
    background-color: #cccccc; /* Default bullet color */
    opacity: 0.8;
    width: 10px;
    height: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #B08D57; /* Gold for active bullet */
    transform: scale(1.2);
}

.swiper-button-next,
.swiper-button-prev {
    color: #B08D57; /* Gold color for nav arrows */
    width: 44px;
    height: 44px;
    /* background-color: rgba(255, 255, 255, 0.9); Optional background for better visibility on varied images */
    /* border-radius: 50%; */
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
    transition: color 0.3s ease, transform 0.3s ease;
    top: 50%; /* Align vertically */
    transform: translateY(-calc(50% + 20px)); /* Adjust for pagination space and center on cards */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #9A7C4F; /* Darker gold on hover */
    transform: translateY(-calc(50% + 20px)) scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem; /* Adjust arrow size */
    font-weight: 900;
}

/* Adjust nav button positions for smaller screens if they overlap content */
@media (max-width: 767px) {
    .swiper-button-next,
    .swiper-button-prev {
        /* display: none; /* Option: Hide arrows on mobile */
        /* Or adjust size and position */
        width: 30px;
        height: 30px;
        transform: translateY(-calc(50% + 15px));
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.2rem;
    }
    .testimonials-swiper {
        padding-bottom: 50px; /* Adjust for smaller pagination */
    }
    .swiper-pagination {
        bottom: 10px !important;
    }
}

/* 6.8 Booking Section */
.booking-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.booking-options {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.booking-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.booking-tab {
    padding: 15px 30px;
    background: #1A1A1A;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-tab:hover,
.booking-tab.active {
    background: #B08D57;
    transform: translateY(-2px);
}

.booking-panels .booking-panel {
    display: none;
}

.booking-panels .booking-panel.active {
    display: block;
}

.booking-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1A1A1A;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    font-size: 1em;
    transition: all 0.3s ease;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #B08D57;
    outline: none;
    box-shadow: 0 0 0 2px rgba(176,141,87,0.1);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-tabs {
        flex-direction: column;
    }
    
    .booking-tab {
        width: 100%;
        text-align: center;
    }
    
    .booking-form {
        padding: 20px;
    }
}

/* 6.9 About Us Section */
.about-us-section {
    background-color: #181818 !important;
    padding: 120px 0;
}

.about-us-section .section-title {
    font-size: 3.0rem; /* Ajustado, era 3.2rem */
    line-height: 1.3;
    margin-bottom: 1.0em; /* Ajustado */
    text-align: left;
    color: #ffffff; /* Texto branco no fundo escuro */
}

.about-us-section .section-title::after {
    display: none; 
}

.about-us-content-grid {
    display: grid;
    align-items: center; 
    gap: 50px; 
}

@media (min-width: 992px) {
    .about-us-content-grid {
        grid-template-columns: 1.1fr 0.9fr; /* Dar um pouco mais de espaço para o texto */
        gap: 70px; 
    }
}

.about-us-text-column p,
.about-us-text-column .lead-text {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.85); /* Texto mais claro para legibilidade no escuro */
    margin-bottom: 1.5em;
    text-align: left; 
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

.about-us-text-column .lead-text {
    font-size: 1.2em; /* Ajustado, era 1.3em */
    font-weight: 400; 
    line-height: 1.75; 
    margin-bottom: 2em; 
    color: rgba(255, 255, 255, 0.95); /* Lead text um pouco mais brilhante */
}

.experience-highlight {
    margin-top: 2.5em;
    margin-bottom: 2.5em;
    padding: 30px; /* Aumentado o padding */
    background-color: rgba(255, 255, 255, 0.03); /* Fundo sutil para o destaque */
    border-left: 4px solid #B08D57; /* Borda dourada à esquerda */
    border-radius: 6px; /* Cantos arredondados em todos os lados */
}

.experience-highlight .experience-statement {
    font-size: 1.15em; /* Tamanho de fonte maior para o destaque */
    font-weight: 400; /* Peso normal, destaque virá do strong */
    color: rgba(255, 255, 255, 0.9); /* Cor principal do texto mais clara */
    line-height: 1.7;
    margin-bottom: 0; /* Remover margem inferior do parágrafo interno */
}

.experience-statement strong {
    color: var(--color-accent); /* Cor dourada para os números/texto em destaque */
    font-weight: 600; /* Peso da fonte para o destaque */
}

.about-us-image-column {
    text-align: center; 
}

.about-us-image {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25); /* Sombra mais pronunciada para o modo escuro */
    max-width: 100%;
    height: auto;
}

/* Optional: Style for an outline button if CTA is added */
.btn-outline-primary {
    background-color: transparent;
    border-color: #B08D57;
    color: #B08D57;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: #B08D57;
    color: #ffffff;
    border-color: #B08D57;
    transform: translateY(-3px); /* Add lift */
    box-shadow: 0 4px 12px rgba(176, 141, 87, 0.25); /* Subtle gold shadow */
}

/*--------------------------------------------------------------
7.0 Footer
--------------------------------------------------------------*/
.site-footer {
    /* .dark-section class already provides background and base text color */
    padding: 60px 0 0; /* Padding top, bottom padding will be in site-info-container */
}

.footer-widgets-container {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator line */
    margin-bottom: 30px;
}

.footer-widgets-grid {
    display: grid;
    gap: 40px;
}

@media (min-width: 768px) { /* Tablet and up */
    .footer-widgets-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (min-width: 992px) { /* Desktop */
    .footer-widgets-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
        /* Or a more complex layout like 1.5fr 1fr 1fr 1.5fr if desired */
    }
}

.footer-widget {
    font-size: 0.95em;
}

.footer-widget .widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3em;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-widget ul li a:hover,
.footer-widget ul li a:focus {
    color: #B08D57; /* Gold accent on hover */
    padding-left: 5px; /* Subtle indent on hover */
}

/* About/Logo Widget */
.footer-widget-1 .footer-logo-link img.footer-logo { /* Tornando o seletor mais específico */
    max-width: 200px; /* Ajuste conforme necessário. Se a logo for mais vertical, pode precisar de max-height também */
    height: auto;
    margin-bottom: 20px; /* Aumentar um pouco a margem inferior */
    /* background: white; /* Removido - a logo já é branca */
    /* padding: 5px; /* Removido */
    /* border-radius: 3px; /* Removido */
}

.footer-widget-1 .site-title-footer a { /* Estilos para o título de fallback, caso precise no futuro */
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.footer-widget-1 .footer-about-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.9em;
}

/* Contact Info Widget */
.contact-info-list li {
    display: flex;
    align-items: flex-start; /* Align icon with start of text line */
    color: rgba(255, 255, 255, 0.75);
}
.contact-info-list li i {
    color: #B08D57; /* Gold accent for icons */
    margin-right: 12px;
    font-size: 1.1em;
    margin-top: 4px; /* Align icon better with text */
    width: 20px; /* Ensure consistent icon spacing */
}
.contact-info-list li a {
    color: rgba(255, 255, 255, 0.75);
}
.contact-info-list li a:hover {
    color: #B08D57;
    padding-left: 0; /* No indent for contact links */
}

/* Social Media Widget */
.footer-widget-4 {
    text-align: center;
}

.footer-widget-4 .widget-title {
    text-align: center;
}

.social-media-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.social-media-list li {
    margin: 0;
}

.social-media-list a {
    color: #ffffff;
    font-size: 1.8em;
    transition: color 0.3s ease;
}

.social-media-list a:hover {
    color: #B08D57;
}

/* Newsletter (Placeholder Styles) */
.footer-widget .newsletter-title {
    margin-top: 25px; /* Space if social icons are above */
}
.footer-newsletter-form {
    display: flex;
    margin-top: 10px;
}
.footer-newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 4px 0 0 4px;
    font-size: 0.9em;
}
.footer-newsletter-form button[type="submit"] {
    border-radius: 0 4px 4px 0;
    padding: 10px 15px;
    white-space: nowrap;
}

/* Sub-footer / Site Info */
.site-info-container {
    padding: 25px 0;
    text-align: center;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.6);
}
.site-info a {
    color: rgba(255, 255, 255, 0.7);
}
.site-info a:hover {
    color: #B08D57;
    padding-left: 0;
}
.site-info .sep {
    margin: 0 8px;
    color: rgba(255,255,255,0.4);
}

/*--------------------------------------------------------------
9.0 Responsive Styles
--------------------------------------------------------------*/

/* General Tablet and Smaller Devices (<= 991px) */
@media (max-width: 991px) {
    h1, .h1 { font-size: 2.5em; }
    h2, .h2 { font-size: 2em; }
    h3, .h3 { font-size: 1.75em; }

    .site-section {
        padding: 60px 0;
    }

    .lead-text {
        font-size: 1.15em;
    }

    /* Header */
    .site-header {
        padding: 15px 0; /* Reduce padding */
    }
    .main-navigation ul li {
        margin: 0 10px;
    }
    .main-navigation a {
        padding: 8px;
        font-size: 0.9em;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2.5em; /* Adjust hero title size from 2.8em */
    }
    .hero-subtitle {
        font-size: 1.1em;
    }

    /* Fleet Grid - Minmax will handle some responsiveness, but good to check item specifics */
    .fleet-grid {
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
        gap: 30px;
    }
    .vehicle-image-container {
        height: 220px; /* Slightly smaller images on tablets */
    }

    /* About Us - Stack columns */
    .about-us-content-grid {
        grid-template-columns: 1fr; /* Stack image and text */
        gap: 30px;
    }
    .about-us-text-column .section-title,
    .about-us-text-column .lead-text {
        text-align: center; /* Center text when stacked */
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }
    .about-us-image-column {
        order: -1; /* Optional: Move image above text on stack */
        margin-bottom: 30px;
    }
}

/* General Mobile Devices (<= 767px) */
@media (max-width: 767px) {
    body {
        font-size: 15px;
    }
    h1, .h1 { font-size: 2em; }
    h2, .h2 { font-size: 1.75em; }
    h3, .h3 { font-size: 1.5em; }
    h4, .h4 { font-size: 1.25em; }

    .site-section {
        padding: 40px 0;
    }

    .lead-text {
        font-size: 1.1em;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Header - Further adjustments if needed, e.g. mobile menu toggle */
    .site-header {
        flex-direction: column; /* Empilha a logo e a navegação em telas pequenas */
        align-items: flex-start; /* Alinha itens à esquerda no modo coluna */
    }
    .site-branding {
        margin-right: 0; /* Remove a margem automática no modo coluna */
        margin-bottom: 1em; /* Adiciona espaço abaixo da logo */
    }
    .site-title a {
        font-size: 1.5em;
    }
    .main-navigation {
        /* For a simple menu, allow wrapping or consider a toggle */
        font-size: 0.9em;
    }
    .main-navigation ul {
        flex-direction: column; /* Empilha os itens do menu */
        width: 100%; /* Faz o menu ocupar toda a largura */
    }
    .main-navigation ul li {
        margin-left: 0;
        margin-bottom: 0.5em; /* Espaço entre os itens do menu empilhados */
        text-align: left; /* Alinha o texto do menu à esquerda */
    }
    .site-header.scrolled {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /* Hero Section */
    .hero-fullscreen {
        min-height: 80vh; /* Slightly reduce hero height */
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .hero-title {
        font-size: 2.0em; /* Adjusted from 2.2em */
    }
    .hero-subtitle {
        font-size: 1em;
    }
    .btn-lg {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    /* Quick Links, Fleet, Why Us, Core Values, Testimonials Grids */
    .quick-links-grid,
    .fleet-grid,
    .why-us-grid,
    .core-values-grid,
    .testimonials-grid {
        grid-template-columns: 1fr; /* Stack items in all grids */
        gap: 25px;
    }

    .vehicle-image-container {
        height: 200px;
    }

    /* Booking Form */
    .form-grid {
        grid-template-columns: 1fr; /* Stack all form fields */
    }
    .form-grid .form-group:not(.form-group-half):not(.form-group-third) {
        /* This rule is fine as it will apply to single column too */
    }
    /* Remove specific column spans if they were set for -half or -third in JS or more complex CSS */
    .form-group-half, .form-group-third {
         grid-column: auto; /* Ensure they don't try to span if grid changes */
    }

    .core-value-item,
    .testimonial-card,
    .why-us-item {
        padding: 25px;
    }

    .why-us-icon {
        font-size: 2em;
    }

    /* About Us Section - Ensure stacking on mobile */
    .about-us-content-grid {
        grid-template-columns: 1fr !important; /* Força uma única coluna */
        gap: 20px; /* Reduz o espaçamento para telas menores */
    }
    .about-us-text-column,
    .about-us-image-column {
        grid-column: 1 / -1; /* Garante que cada item ocupe toda a largura da coluna do grid */
        width: 100%; /* Ocupa 100% da largura disponível */
    }
    .about-us-text-column .section-title,
    .about-us-text-column .lead-text {
        text-align: center; /* Centraliza o texto quando empilhado */
        margin-left: auto;
        margin-right: auto;
        max-width: 95%; /* Usa porcentagem para melhor ajuste do texto */
    }
    .about-us-image-column {
        order: -1; /* Move a imagem para cima do texto em telas menores */
        margin-bottom: 20px; /* Espaçamento abaixo da imagem */
    }
    .about-us-image-column img {
        max-width: 100%; /* Garante que a imagem seja responsiva dentro de sua coluna */
        height: auto;      /* Mantém a proporção da imagem */
    }
}

/* Small Mobile Devices (<= 575px) */
@media (max-width: 575px) {
    h1, .h1 { font-size: 1.6em; }
    h2, .h2 { font-size: 1.3em; }
    h3, .h3 { font-size: 1.1em; }

    .hero-title {
        font-size: 1.7em; /* Adjusted from 1.9em */
    }
    .hero-subtitle {
        font-size: 0.95em;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.85em;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="date"],
    .form-group input[type="time"],
    .form-group input[type="number"],
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95em;
    }

    .hero-subtitle, /* Aplicar também ao antigo se ainda existir em algum lugar */
    .hero-rotating-subtitle {
        font-size: 0.95em;
        min-height: 80px; /* Ajustar altura mínima para mobile */
    }

    .hero-rotating-subtitle .rotating-item {
        /* Ajustes de texto menores se necessário, mas geralmente herda bem */
    }

    .header-inner {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .site-header.scrolled .header-inner {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .header-phone-contact a {
        font-size: 0.85em;
    }
}

/* Responsividade para a logo, se necessário */
@media (max-width: 767px) {
    .site-branding {
        margin-bottom: 0; /* Ajustar conforme o layout responsivo do header */
        /* Outros ajustes se a logo precisar diminuir em telas muito pequenas */
    }
    .custom-logo {
        max-height: 40px; /* Logo um pouco menor em telas mobile */
        /* As regras de display para logo-white e logo-black ainda se aplicam aqui */
    }
     .header-inner { /* Para garantir que a logo e o menu fiquem na mesma linha em mobile, se o .site-header for column */
        display: flex;
        flex-direction: row; /* Força linha */
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
}

@media (max-width: 991px) {
    /* Header */
    .site-header {
        /* padding: 15px 0; /* Comentado pois o padding está no header-inner */
    }
}

/* Modern About Section */
.about-modern-section {
    padding: 120px 0;
    background-color: #1A1A1A;
    color: #ffffff;
    overflow: hidden;
}

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

.about-modern-content {
    padding-right: 40px;
}

.modern-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    line-height: 1.2;
    margin: 0 0 40px;
    color: #ffffff;
}

.modern-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.experience-block {
    margin: 30px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #B08D57;
    border-radius: 4px;
}

.experience-block strong {
    color: #B08D57;
}

.about-modern-images {
    position: relative;
}

.image-composition {
    position: relative;
    height: 700px;
}

.image-main {
    position: absolute;
    width: 70%;
    height: 450px;
    top: 0;
    right: 0;
    z-index: 3;
}

.image-secondary {
    position: absolute;
    width: 50%;
    height: 350px;
    left: 0;
    top: 150px;
    z-index: 2;
}

.image-accent {
    position: absolute;
    width: 40%;
    height: 250px;
    right: 20%;
    bottom: 0;
    z-index: 1;
}

.image-main img,
.image-secondary img,
.image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.5s ease;
}

.image-main:hover img {
    transform: scale(1.02) translateY(-5px);
}

.image-secondary:hover img {
    transform: scale(1.02) translateX(5px);
}

.image-accent:hover img {
    transform: scale(1.02) translateY(5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .modern-title {
        font-size: 3em;
    }
    
    .image-composition {
        height: 600px;
    }
}

@media (max-width: 991px) {
    .about-modern-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-modern-content {
        padding-right: 0;
    }
    
    .modern-title {
        font-size: 2.5em;
        text-align: center;
    }
    
    .modern-text {
        text-align: center;
    }
    
    .image-composition {
        height: 500px;
        margin: 0 auto;
        max-width: 600px;
    }
}

@media (max-width: 767px) {
    .about-modern-section {
        padding: 60px 0;
    }
    
    .modern-title {
        font-size: 2em;
    }
    
    .image-composition {
        height: 400px;
    }
    
    .image-main {
        width: 80%;
        height: 300px;
    }
    
    .image-secondary {
        width: 60%;
        height: 200px;
        top: 100px;
    }
    
    .image-accent {
        width: 50%;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .image-composition {
        height: 350px;
    }
    
    .image-main {
        width: 85%;
        height: 250px;
    }
    
    .image-secondary {
        width: 65%;
        height: 180px;
        top: 80px;
    }
    
    .image-accent {
        width: 55%;
        height: 130px;
    }
}

/* Validation Modal Styles */
.validation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.validation-modal.hidden {
    display: none;
}

.validation-content {
    background-color: #1A1A1A;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.validation-logo {
    max-width: 200px;
    margin: 0 auto 30px;
    display: block;
    height: auto;
}

.validation-title {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    margin-bottom: 20px;
}

.validation-message {
    color: rgba(255,255,255,0.8);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
    line-height: 1.6;
}

.validation-input {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.05);
    color: #ffffff;
    border-radius: 6px;
    font-size: 1em;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.validation-input:focus {
    outline: none;
    border-color: #B08D57;
    box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.2);
}

.validation-input.error {
    border-color: #cc1818;
    box-shadow: 0 0 0 3px rgba(204, 24, 24, 0.2);
}

.validation-error {
    color: #cc1818;
    font-size: 0.9em;
    margin-top: 10px;
    display: none;
}

.validation-error.show {
    display: block;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1A1A1A;
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-bottom-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    padding: 0 10px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 8px 5px;
    font-size: 0.8em;
    transition: all 0.3s ease;
}

.mobile-nav-item i {
    font-size: 1.4em;
    margin-bottom: 5px;
}

.mobile-nav-item span {
    font-size: 0.9em;
}

.mobile-nav-item.active {
    color: #B08D57;
}

.mobile-nav-item:hover {
    color: #B08D57;
}

@media (max-width: 767px) {
    .mobile-bottom-nav {
        display: block;
    }

    /* Ajusta o padding do conteúdo principal para não ficar escondido pelo menu mobile */
    .site-main {
        padding-bottom: 70px;
    }
} 