/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #FFA726, #FF9800, #FFA726); /* Fundo mais alaranjado */
    background-size: 300% 300%;
    animation: gradientBG 15s ease infinite;
    color: #333; /* Texto um pouco mais escuro */
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 252, 242, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 252, 242, 0.12) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23FF9800' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

:root {
    --accent-color: rgba(255, 152, 0, 0.85);
    --accent-solid: #FF9800;
    --accent-light: rgba(255, 152, 0, 0.15);
    --accent-medium: rgba(255, 152, 0, 0.35);
    --button-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Page Borders */
.page-border {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 15px;
    background-color: var(--accent-solid);
    z-index: 100;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
}

.left-border {
    left: 0;
}

.right-border {
    right: 0;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Add subtle light effect */
.container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,152,0,0.1) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    z-index: -1;
}

/* Landing Content */
.landing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.92), rgba(255, 245, 230, 0.92));
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 152, 0, 0.3);
    position: relative;
}

.landing-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 152, 0, 0.1), transparent 70%),
                radial-gradient(circle at bottom left, rgba(255, 152, 0, 0.1), transparent 70%);
    border-radius: 18px;
    z-index: -1;
}

/* Logo Section */
.logo-section {
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
    position: relative;
    background-color: rgba(255, 152, 0, 0.1);
    padding: 15px;
    border-radius: 15px;
    max-width: 160px;
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.logo-section::after {
    content: none; /* Remove the decorative line */
}

.logo-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Title Section */
.title-section {
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
    animation: fadeDown 1s ease-out forwards;
    opacity: 0;
    background: linear-gradient(to bottom, #fff9f3, #fff5ea);
    padding: 25px 20px;
    border-radius: 15px;
    border: 2px solid rgba(255, 152, 0, 0.4);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 0 0 5px rgba(255, 152, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, transparent, var(--accent-solid), transparent);
}

.title-img {
    display: block; /* Restaurando a exibição da imagem */
    max-width: 95%;
    height: auto;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    margin: 0 auto;
}

.title-img:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.25));
}

.title-text {
    display: none;
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Car Section */
.car-section {
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
    position: relative; /* Add position relative */
    z-index: 2; /* Ensure it's above other elements */
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px 10px;
    border-radius: 15px;
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.car-img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    animation: float 6s ease-in-out infinite;
    transform-origin: center bottom;
    will-change: transform;
    filter: drop-shadow(0 20px 15px rgba(0,0,0,0.1)); /* Softer, more spread out shadow */
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(-0.5deg);
    }
    50% {
        transform: translateY(-15px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(0.5deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.car-img:hover {
    animation-play-state: paused; /* Pause animation on hover */
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.25)); /* Enhance shadow on hover */
}

/* CTA Section */
.cta-section {
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.cta-img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.cta-img:hover {
    transform: scale(1.03);
}

/* WhatsApp Buttons */
.whatsapp-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin: 25px auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 3px solid var(--accent-solid);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(255, 152, 0, 0.1);
    position: relative;
    z-index: 10;
}

.whatsapp-buttons::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 25px;
    background: linear-gradient(45deg, rgba(255,152,0,0.3), rgba(255,152,0,0.1), rgba(255,152,0,0.3));
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

.whatsapp-buttons::after {
    display: none; /* Removendo completamente o indicador "TOQUE AQUI" */
}

@keyframes borderGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.03);
    }
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(145deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    padding: 20px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 0 5px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
    letter-spacing: 0.5px;
    transform-origin: center;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0), rgba(255,255,255,0.2), rgba(255,255,255,0));
    transform: rotate(30deg);
    animation: sheen 3s infinite;
}

@keyframes sheen {
    0%, 80% {
        transform: translateX(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), 0 0 0 6px rgba(37, 211, 102, 0.4);
    background: linear-gradient(145deg, #1ea952, #0d6b61);
}

.whatsapp-btn i {
    font-size: 28px;
    margin-right: 5px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .landing-content {
        padding: 20px 15px;
    }
    
    .page-border {
        width: 15px;
    }
    
    .container {
        padding: 0 25px;
    }
}

@media (max-width: 480px) {
    .landing-content {
        padding: 15px 10px;
    }
    
    .page-border {
        width: 10px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .whatsapp-btn {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .whatsapp-btn i {
        font-size: 18px;
    }
}
