/* Estilos Gerais - Redesign Profissional */
:root {
    --primary-color: #1a2a3a;
    --secondary-color: #c9a74d;
    --text-color: #333;
    --light-text: #fff;
    --light-bg: #f8f9fa;
    --dark-bg: #1a2a3a;
    --border-color: #e0e0e0;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 2rem;
    text-align: center;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 1rem auto 0;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

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

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

.section {
    padding: 5rem 0;
}

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

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

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

.btn-primary:hover {
    background-color: #0f1c29;
    color: var(--light-text);
}

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

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

/* Header */
header {
    background: linear-gradient(rgba(10, 22, 34, 0.85), rgba(10, 22, 34, 0.85));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    margin-bottom: 2rem;
}

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

.header-image {
    margin-bottom: 2rem;
    max-width: 100%;
}

.car-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.header-content h1 {
    color: var(--light-text);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.header-cta {
    margin-top: 2rem;
}

.cta-text {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: var(--primary-color);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.navbar-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text);
    display: flex;
    align-items: center;
}

.navbar-logo span {
    color: var(--secondary-color);
    margin-left: 0.2rem;
}

.navbar-menu {
    display: flex;
    list-style: none;
}

.navbar-item {
    margin-left: 2rem;
}

.navbar-link {
    color: var(--light-text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 0.3rem;
}

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

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

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

.navbar-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Sobre */
.content-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
}

.feature-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Diferenciais */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.diferencial-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.diferencial-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.diferencial-item:hover {
    transform: translateY(-10px);
}

.icon-container {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

/* Serviços */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.servico-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.servico-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.servico-item:hover {
    transform: translateY(-10px);
}

/* Turismo */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.turismo-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.turismo-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.turismo-item:hover {
    transform: translateY(-10px);
}

.turismo-image {
    height: 250px;
    overflow: hidden;
}

.turismo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.turismo-content {
    padding: 1.5rem;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-text {
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    left: -0.5rem;
    top: -1rem;
    opacity: 0.3;
}

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

.testimonial-author-info {
    margin-left: 1rem;
}

.testimonial-author-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.testimonial-author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #777;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(10, 22, 34, 0.9), rgba(10, 22, 34, 0.9));
    color: var(--light-text);
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    color: var(--light-text);
}

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

.cta-buttons {
    margin-top: 2rem;
}

/* Contato */
.contato-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.contato-info {
    flex: 1;
}

.contato-image {
    flex: 1;
}

.contato-detalhes {
    margin: 2rem 0;
}

.contato-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contato-item i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

/* WhatsApp Button */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-button i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.whatsapp-button:hover {
    background-color: #1da851;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    z-index: 999;
    opacity: 0.8;
    transform: scale(0.9);
}

.floating-whatsapp:hover {
    background-color: #1da851;
    color: white;
    transform: scale(1.1);
    opacity: 1;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 4rem 0 2rem;
}

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

.footer-column h3 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-contact-item i {
    margin-right: 1rem;
    color: var(--secondary-color);
}

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

/* Responsividade */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .contato-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 999;
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .navbar-item {
        margin: 1.5rem 0;
    }
    
    .navbar-toggle {
        display: block;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .header-content .subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 3rem 0;
    }
    
    .header-content h1 {
        font-size: 2rem;
    }
    
    .header-content .subtitle {
        font-size: 1rem;
    }
    
    .diferenciais-grid,
    .servicos-grid,
    .turismo-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Esconder seções até serem acessadas pelo menu */
#sobre, #diferenciais, #servicos, #turismo, #depoimentos, #contato {
    display: none;
}

#sobre:target, #diferenciais:target, #servicos:target, #turismo:target, #depoimentos:target, #contato:target {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

/* Mostrar seção inicial por padrão */
#inicio {
    display: block;
}
