/* Base Styles */
:root {
    --primary-color: #0F1E3D; /* Dark Blue - Base */
    --secondary-color: #D4AF37; /* Gold - Highlights, Trust */
    --accent-cta-color: #FF8C00; /* Primary Orange for main CTAs */
    --submit-cta-color: #FF8C00; /* Specific Orange for Form Submit */
    --warning-color: #f39c12; /* Orange/Yellow - Ratings */
    --light-warning-bg: #fffbeb; /* Light yellow background */
    --light-warning-border: #ffe58f; /* Light yellow border */
    --light-warning-icon: #ffc107; /* Yellow icon */
    --success-color: #27ae60; /* Green - Success Icons */
    --info-color: #3498db; /* Light Blue */
    --light-color: #f8f9fa; /* Light Background */
    --dark-color: #343a40; /* Dark Text */
    --gray-color: #6c757d; /* Grey Text */
    --light-gray: #e9ecef; /* Light Grey Background/Borders */
    --border-color: #dee2e6; /* Border Color */
    --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: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-color);
}

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

.text-left h2::after {
    left: 0;
    transform: none;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--accent-cta-color);
    color: white;
}

.btn-primary:hover {
    background-color: #CC6600;
    color: white;
}

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

.btn-secondary:hover {
    background-color: #c4a22f;
    color: var(--dark-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: white;
}

.btn-call {
    background-color: var(--info-color);
    color: white;
}

.btn-call:hover {
    background-color: #2980b9;
    color: white;
}

.highlight {
    color: var(--accent-color);
    font-weight: 700;
}

/* Header Styles */
.header {
    background-color: var(--primary-color);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: white;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.header-cta {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 30, 61, 0.85), rgba(15, 30, 61, 0.85)), url(\'../images/veiculo_recuperado_guincho.jpeg\');   background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    color: white;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.hero-text h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-weight: 500;
}

.urgency-box {
    background-color: rgba(255, 193, 7, 0.15); /* Light transparent yellow */
    border-left: 4px solid var(--light-warning-icon); /* Solid yellow border */
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.urgency-icon {
    font-size: 2rem;
    color: var(--light-warning-icon);
    margin-right: 15px;
}

.urgency-text p {
    margin: 0;
    font-size: 1.1rem;
}

.countdown-container {
    margin-bottom: 30px;
}

.countdown-container p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.countdown {
    display: flex;
    gap: 15px;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 4px;
    text-align: center;
    min-width: 80px;
}

.countdown-item span:first-child {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.hero-cta {
    margin-top: 30px;
    text-align: center; /* Added to center the button and subtext */
}

.cta-subtext {
    font-size: 0.9rem;
    margin-top: 10px;
    text-align: center;
    color: var(--light-gray);
}

.hero-image {
    flex: 1;
    position: relative;
    display: none;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.success-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--success-color);
    color: white;
    padding: 15px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow);
}

.success-badge span:first-child {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.success-badge span:last-child {
    font-size: 0.9rem;
}

/* Social Proof Section */
.social-proof {
    padding: 30px 0;
    background-color: white;
    box-shadow: var(--shadow);
}

.trust-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-badge img {
    height: 40px;
}

.trust-badge span {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Confirmation Section */
.confirmation {
    padding: 80px 0;
    background-color: var(--light-color);
}

.confirmation-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.confirmation-image {
    flex: 1;
    display: none;
}

.confirmation-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.confirmation-text {
    flex: 1;
}

.confirmation-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.confirmation-cta {
    margin-top: 30px;
}

.guarantee-text {
    font-size: 0.9rem;
    margin-top: 10px;
    color: var(--gray-color);
}

.guarantee-text i {
    color: var(--success-color);
    margin-right: 5px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-item {
    padding: 0 15px;
}

.testimonial-content {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--warning-color);
    margin-right: 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.author-info .result {
    color: var(--success-color);
    font-weight: 500;
    margin-top: 5px;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonials-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.testimonials-controls button:hover {
    background-color: var(--secondary-color);
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background-color: var(--light-color);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.solution-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-card.highlight {
    border: 2px solid var(--secondary-color);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 58, 108, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.solution-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.solution-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.solution-card p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.solution-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.solution-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.solution-link:hover i {
    transform: translateX(5px);
}

.solutions-cta {
    text-align: center;
    margin-top: 40px;
}

.solutions-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-text {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 58, 108, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--gray-color);
}

/* Process Section */
.process {
    padding: 80px 0;
    background-color: white;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto 40px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    width: 2px;
    height: calc(100% - 20px);
    background-color: var(--light-gray);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 20px;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--gray-color);
}

.process-cta {
    text-align: center;
    margin-top: 40px;
}

/* Calculator Section */
.calculator {
    padding: 80px 0;
    background-color: var(--light-color);
}

.calculator-container {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-form {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.calculator-result {
    flex: 1;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.calculator-result h3 {
    color: white;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.5rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item span:first-child {
    font-weight: 500;
}

.result-item span:last-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.result-note {
    margin-top: auto;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--light-gray);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    background-color: var(--light-color);
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    background-color: white;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.faq-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact-content {
    display: flex;
    gap: 40px;
    flex-direction: row-reverse; /* Cards à esquerda, formulário à direita no desktop */
}

.contact-form-container {
    flex: 0.7; /* Reduzindo a proporção para dar mais destaque ao card do WhatsApp */
}
.contact-form {
    margin-top: 30px;
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-privacy input {
    margin-top: 5px;
    margin-right: 10px;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.contact-info {
    flex: 1.3; /* Aumentando a proporção para dar mais destaque ao card do WhatsApp */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form-container {
    flex: 0.7; /* Reduzindo a proporção para dar mais destaque ao card do WhatsApp */
}

.contact-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}
.contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem; /* Mantido em 2.5rem conforme o título do formulário */
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    display: inline-block; /* Re-adicionado para o alinhamento correto do pseudo-elemento */
    padding-bottom: 10px;
} /* Re-adicionado para o alinhamento correto do pseudo-elemento */
    padding-bottom: 10px;
}

.contact-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contact-card .subtitle {
    font-size: 1.2rem; /* Ajustado para corresponder ao .section-header p */
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(26, 58, 108, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.method-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.method-details {
    flex: 1;
}

.method-details h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.method-details p {
    margin-bottom: 10px;
    color: var(--gray-color);
}

.contact-guarantee {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(39, 174, 96, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.guarantee-icon i {
    font-size: 2rem;
    color: var(--success-color);
}

.guarantee-text h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.guarantee-text p {
    color: var(--gray-color);
}

.limited-offer {
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
}

.limited-offer h3 {
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.limited-offer p {
    margin-bottom: 20px;
    text-align: center;
}

.offer-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.counter-number {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Chat Bot */
.chat-bot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    z-index: 999;
    overflow: hidden;
    display: none;
}

.chat-bot.active {
    display: block;
}

.chat-bot-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.chat-bot-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.chat-bot-avatar i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.chat-bot-info {
    flex: 1;
}

.chat-bot-info h3 {
    color: white;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.chat-bot-info p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin: 0;
}

.chat-bot-toggle {
    color: white;
    transition: var(--transition);
}

.chat-bot.minimized .chat-bot-toggle {
    transform: rotate(180deg);
}

.chat-bot-body {
    height: 400px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

.message {
    margin-bottom: 15px;
    max-width: 80%;
}

.message.bot {
    background-color: var(--light-gray);
    padding: 10px 15px;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    align-self: flex-start;
}

.message.user {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    border-bottom-right-radius: 0;
    align-self: flex-end;
    margin-left: auto;
}

.message p {
    margin: 0 0 8px;
}

.message p:last-child {
    margin-bottom: 0;
}

.message.options {
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    padding: 0;
}

.option-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-btn {
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    border-radius: 20px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.option-btn:hover {
    background-color: var(--light-gray);
    border-color: var(--primary-color);
}

.chat-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid var(--border-color);
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin-right: 10px;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.chat-input button {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.chat-input button:hover {
    background-color: var(--secondary-color);
}

.chat-bot-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    padding: 15px;
    display: flex;
    align-items: center;
    max-width: 300px;
    cursor: pointer;
    z-index: 999;
}

.chat-bot.active + .chat-bot-bubble {
    display: none;
}

.chat-bubble-text {
    margin-left: 15px;
}

.chat-bubble-text p {
    margin: 0;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.whatsapp-float i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--light-gray);
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-gray);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (min-width: 992px) {
    .header-cta {
        display: block;
    }
    
    .hero-image {
        display: block;
    }
    
    .confirmation-image {
        display: block;
    }
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content,
    .confirmation-content,
    .about-content,
    .calculator-container {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info {
        order: 1; /* Cards aparecem primeiro no mobile */
    }
    
    .contact-form-container {
        order: 2; /* Formulário aparece por último no mobile */
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-item {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text h2 {
        font-size: 1.4rem;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .chat-bot {
        width: 300px;
    }
    
    .whatsapp-float span {
        display: none;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .whatsapp-float i {
        margin-right: 0;
    }
}

@media (max-width: 575px) {
    .countdown {
        justify-content: space-between;
    }
    
    .countdown-item {
        min-width: auto;
        flex: 1;
    }
    
    .chat-bot {
        width: calc(100% - 40px);
    }
}


/* Customization: Change urgency highlight to yellow */
.urgency-text .highlight {
    color: var(--warning-color); /* Yellow */
}



.trust-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(26, 58, 108, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px; /* Replaces gap in parent */
}

.trust-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.trust-badge img { /* Remove styling for old img */
    display: none;
}

.trust-badge {
    /* gap: 10px; Remove gap, handled by icon margin */
}




.btn-submit {
    background-color: var(--submit-cta-color);
    color: white;
}

.btn-submit:hover {
    background-color: #CC6600; /* Darker shade of orange */
    color: white;
}



/* Ajustes de Hierarquia e Subtítulo */
.contact-card h3 {
    font-size: 1.8rem; /* Tamanho maior para o título do WhatsApp */
    font-weight: 700;
}

.contact-form-container h2 {
    font-size: 1.8rem; /* Reduzindo o tamanho do título do formulário */
}



.contact-card.highlight-gold h3 {
    font-size: 2rem; /* Aumenta o tamanho do título 'Atendimento Imediato' */
}

.contact-card.highlight-gold .subtitle {
    font-size: 1.1rem; /* Aumenta o tamanho do subtítulo */
}

.whatsapp-microcopy {
    margin-bottom: 15px; /* Adds space between the text and the button */
}



/* Estilos para a seção "Sobre Nós" reestruturada */
.about-subtitle {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
}

.about-paragraph-with-icon {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-icon {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.mission-highlight {
    background: linear-gradient(135deg, var(--primary-color), #1a2b4d);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--secondary-color);
    position: relative;
}

.mission-highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    border-radius: 12px;
    z-index: -1;
}

.mission-highlight p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}

.mission-highlight strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .about-subtitle {
        font-size: 1.2rem;
        margin-top: 25px;
    }
    
    .about-paragraph-with-icon {
        font-size: 1rem;
    }
    
    .about-icon {
        font-size: 1.1rem;
        margin-right: 12px;
    }
    
    .mission-highlight {
        padding: 20px;
        margin: 25px 0;
    }
    
    .mission-highlight p {
        font-size: 1.1rem;
    }
}



/* --- CORREÇÕES PARA A SEÇÃO 'SOBRE NÓS' --- */

/* 1. Corrige a quebra de linha no parágrafo com ícone */
.about-paragraph-with-icon p {
    flex-grow: 1;
}

/* 2. Garante a consistência visual em dispositivos móveis */
@media (max-width: 768px) {

    /* 2.1. Aplica a cor dourada nos ícones */
    .about-icon {
        color: var(--secondary-color);
    }

    /* 2.2. Garante a linha vertical dourada nos subtítulos */
    .about-subtitle {
        border-left: 4px solid var(--secondary-color);
        padding-left: 15px;
    }

    /* 2.3. Aplica o estilo completo do card da missão */
    .mission-highlight {
        background: linear-gradient(135deg, var(--primary-color), #1a2b4d);
        color: white;
        border-radius: 10px;
        border-left: 5px solid var(--secondary-color);
        position: relative;
    }

    /* 2.4. Garante a cor da palavra "Missão:" no card */
    .mission-highlight strong {
        color: var(--secondary-color);
    }
}



.contact-card.highlight-gold {
    border: 2px solid var(--secondary-color); /* Contorno dourado */
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); /* Sombra sutil para realçar */
}




@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); /* Cor do WhatsApp */
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); /* Expande a sombra */
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); /* Retorna ao normal */
    }
}

.btn-whatsapp {
    animation: pulse 2s infinite; /* Aplica a animação */
}




.whatsapp-guarantee-text {
    font-size: 0.9rem; /* Fonte menor */
    color: var(--gray-color); /* Cor cinza */
    text-align: center; /* Centralizar */
    margin-top: 15px; /* Espaçamento acima */
}

.whatsapp-guarantee-text i {
    font-size: 1rem; /* Tamanho do ícone */
    vertical-align: middle; /* Alinhar verticalmente com o texto */
}




.benefit-microcopy {
    font-size: 0.9rem; /* Fonte menor */
    color: var(--gray-color); /* Cor cinza */
    text-align: center; /* Centralizar */
    margin-top: 10px; /* Espaçamento acima */
}

.benefit-microcopy i {
    font-size: 1rem; /* Tamanho do ícone */
    vertical-align: middle; /* Alinhar verticalmente com o texto */
    color: var(--success-color); /* Cor verde para o check */
}





.whatsapp-microcopy {
    margin-bottom: 15px; /* Adds space between the text and the button */
}




.contact-card.highlight-gold h3 {
    font-size: 2rem; /* Aumenta o tamanho do título 'Atendimento Imediato' */
}

.contact-card.highlight-gold .subtitle {
    font-size: 1.1rem; /* Aumenta o tamanho do subtítulo */
}





.contact-form-container .section-header h2 {
    font-size: 1.8rem; /* Reduzindo o tamanho do título do formulário */
}

.contact-form-container .section-header p {
    font-size: 1rem; /* Reduzindo o tamanho do subtítulo do formulário */
}

.contact-form .form-group label {
    font-size: 0.9rem; /* Reduzindo o tamanho da fonte dos rótulos dos campos */
}


