:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --secondary: #F97316;
    --secondary-dark: #EA580C;
    --background: #F8FAFC;
    --text: #0F172A;
    --text-light: #64748B;
    --success: #10B981;
    --border: #E2E8F0;
    --white: #FFFFFF;
    --spacing: 24px;
    --gradient: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    --shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
    background-image: url('https://venturatransporte.com.br/wp-content/uploads/2025/05/transporte-veiculos.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0.85));
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: var(--spacing);
}

.topo {
    margin: 0 auto;
    padding: 0 var(--spacing);
	background-color: #000000;
	text-align: center;
	padding: 15px;
}
	
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

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

a:hover {
    color: var(--primary-dark);
}

/* Header */
header {
    padding: var(--spacing) 0;
    text-align: center;
}

.logo h1 {
    font-size: 32px;
    margin-bottom: 8px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.logo p {
    font-size: 16px;
    color: var(--text-light);
}

/* Hero Section */
.hero {
    padding: calc(var(--spacing) * 1) 0 calc(var(--spacing) * 1);
    text-align: center;
}

.hero-content p:first-child {
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    /* margin-bottom: 16px; */
    display: inline-block;
    /* background: rgba(37, 99, 235, 0.1); */
    padding: 6px 12px;
    border-radius: 20px;
}

.hero-content h1 {
    font-size: 39px;
    line-height: 1.2;
    margin-bottom: var(--spacing);
    font-weight: 700;
    background: #000000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-top: 15px;
}

.hero-content p:last-child {
    font-size: 15px;
    margin-bottom: calc(var(--spacing) * 0.5);
    color: var(--text-light);
    max-width: 510px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    padding-bottom: calc(var(--spacing) * 1);
}

.lead-form {
    background-color: var(--white);
    padding: calc(var(--spacing) * 2);
    border-radius: 16px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.lead-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0) 70%);
    z-index: 0;
}

.form-section {
    margin-bottom: calc(var(--spacing) * 1.5);
    padding-bottom: calc(var(--spacing) * 1.5);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.form-section h3 {
    font-size: 20px;
    margin-bottom: var(--spacing);
    color: #000000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3::before {
    content: '';
    display: block;
    width: 4px;
    height: 20px;
    background: #000000;
    border-radius: 2px;
}

.form-group {
    margin-bottom: var(--spacing);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 15px;
    color: var(--text);
}

input, select, textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
    background-color: #F8FAFC;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background-color: var(--white);
}

.radio-group {
    display: flex;
    gap: var(--spacing);
}

.radio-label, .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-label input, .checkbox-label input {
    width: auto;
}

.radio-label span, .checkbox-label span {
    position: relative;
    top: 1px;
}

.urgency-group {
    flex-direction: column;
    gap: 12px;
}

.urgency-group .radio-label {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.urgency-group .radio-label:hover {
    background-color: rgba(37, 99, 235, 0.05);
    border-color: var(--primary);
}

.urgency-group .radio-label input[type="radio"]:checked + span {
    color: var(--primary);
    font-weight: 600;
}

.urgency-group .radio-label:has(input[type="radio"]:checked) {
    background-color: rgba(37, 99, 235, 0.1);
    border-color: var(--primary);
}

.terms {
    margin-bottom: calc(var(--spacing) * 1.5);
}

.btn-primary {
    display: inline-block;
    background: #25d366;
    color: var(--white);
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 12px;
}

.btn-submit i {
    font-size: 22px;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: calc(var(--spacing) * 2);
}

.success-message i {
    font-size: 72px;
    color: var(--success);
    margin-bottom: var(--spacing);
}

.success-message h3 {
    color: var(--success);
    margin-bottom: 16px;
    font-size: 28px;
}

.success-message p {
    margin-bottom: calc(var(--spacing) * 1.5);
    font-size: 18px;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: #f8fafc;
    border-top: 1px solid var(--border);
    padding: calc(var(--spacing) * 2) 0 var(--spacing);
    margin-top: var(--spacing);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: calc(var(--spacing) * 2);
    margin-bottom: calc(var(--spacing) * 1.5);
}

.footer-info {
    flex: 1;
    min-width: 250px;
}

.footer-info h3 {
    font-size: 21px;
    margin-bottom: 12px;
    color: #000000;
}

.footer-info p {
    color: var(--text-light);
    line-height: 1.5;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #000000;
    position: relative;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

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

.footer-contact ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.footer-contact ul li i {
    width: 20px;
    margin-right: 10px;
    color: #212175;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing);
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: var(--spacing);
    }
    
    .footer-info, .footer-contact {
        min-width: 100%;
    }
}

/* Estilos aprimorados para o countdown timer */
.countdown-container {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(249, 115, 22, 0.15) 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 60px;
    border-left: 6px solid var(--secondary);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.1);
    position: relative;
    overflow: hidden;
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0) 70%);
    z-index: 0;
}

.countdown-message {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.countdown-message i {
    color: var(--secondary);
    font-size: 24px;
    background: rgba(255, 255, 255, 0.9);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(249, 115, 22, 0.15);
}

.countdown-message p {
    margin: 0;
    font-weight: 600;
    color: var(--text);
    font-size: 21px;
    line-height: 1.4;
}

#countdown-timer {
    font-weight: 700;
    color: var(--secondary);
    font-size: 18px;
    background: rgba(255, 255, 255, 0.8);
    padding: 3px 12px;
    border-radius: 8px;
    margin-left: 4px;
    margin-right: 4px;
    display: inline-block;
    min-width: 70px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(249, 115, 22, 0.1);
}

.countdown-progress {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.countdown-bar {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: 5px;
    transition: width 1s linear;
    position: relative;
}

.countdown-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite linear;
}

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

/* Animação de pulsação aprimorada para o timer */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(211, 47, 47, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

.countdown-urgent #countdown-timer {
    color: #ffffff;
    background-color: #d32f2f;
    animation: pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

.countdown-urgent .countdown-bar {
    background: linear-gradient(90deg, #d32f2f 0%, #ff6b6b 100%);
}

.countdown-urgent .countdown-message i {
    color: #d32f2f;
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) infinite;
    transform: translate3d(0, 0, 0);
}

@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-3px, 0, 0); }
    40%, 60% { transform: translate3d(3px, 0, 0); }
}

/* Estilos para as notificações de atividade recente */
.recent-activity-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    width: 320px;
    max-width: calc(100% - 40px);
}

.activity-notification {
    background-color: var(--white);
    border-left: 4px solid var(--secondary);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    padding: 16px;
    margin-bottom: 12px;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 14px;
}

.activity-notification.show {
    transform: translateX(0);
}

.activity-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #212175;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(37, 99, 235, 0.2);
}

.activity-content {
    flex-grow: 1;
}

.activity-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-light);
}

.activity-content .activity-name {
    font-weight: 700;
    color: var(--text);
}

.activity-content .activity-time {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.activity-content .activity-time::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--success);
    border-radius: 50%;
}

.activity-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.activity-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .countdown-message p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .lead-form {
        padding: var(--spacing);
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p:last-child {
        font-size: 16px;
    }
    
    .recent-activity-container {
        bottom: 10px;
        left: 10px;
        width: calc(100% - 20px);
    }
}

/* Estilos para as avaliações do Google */
.google-ratings {
    padding: 6px 0;
    margin-bottom: 20px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px; */
}

.rating-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.rating-logo {
    display: flex;
    align-items: center;
}

.rating-logo img {
    height: 24px;
    width: auto;
    margin-right: 5px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating-stars i {
    color: #FBBC05;
    font-size: 18px;
}

.rating-value {
    font-weight: 700;
    margin-left: 8px;
    font-size: 18px;
    color: var(--text);
}

.rating-count {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 576px) {
    .rating-content {
        gap: 10px;
    }
    
    .rating-stars i {
        font-size: 16px;
    }
    
    .rating-value {
        font-size: 16px;
    }
    
    .rating-count {
        font-size: 13px;
    }
    
    .rating-logo img {
        height: 20px;
    }
}

/* Estilos para o botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 15px;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float i {
    margin-right: 8px;
    font-size: 28px;
}

.whatsapp-text {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:active {
    transform: translateY(0);
}

/* Animação de pulso para o botão do WhatsApp */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}

/* Responsividade para o botão do WhatsApp */
@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 8px 15px 8px 12px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
    
    .whatsapp-text {
        font-size: 14px;
    }
}

/* Estilos para o botão de chamada para ação */
.cta-button-container {
    margin: 25px 0;
}

.cta-button {
    display: inline-block;
    background: #ffcf1b;
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: bounce 2s infinite;
}

.cta-button i {
    margin-right: 10px;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

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

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

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

@media (max-width: 576px) {
    .cta-button {
        font-size: 16px;
        padding: 14px 24px;
    }
} 