/* ============================================
   VARIÁVEIS CSS - PALETA MAGNA
   ============================================ */

:root {
    --primary-red: #D32F2F;
    --dark-blue: #1A1A3E;
    --light-bg: #F5F5F5;
    --accent-orange: #FF6B35;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #E0E0E0;
    --success-green: #4CAF50;
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ============================================
   RESET E ESTILOS GLOBAIS
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER FIXO
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 700;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.logo a:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.logo-img {
    height: 120px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--primary-red);
    margin-top: 2px;
}

/* Navegação Desktop */
.nav-desktop {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-red);
}

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

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

/* Botão WhatsApp Header */
.btn-whatsapp-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-whatsapp-header:hover {
    background-color: #B71C1C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-blue);
    border-radius: 2px;
    transition: var(--transition);
}

/* Navegação Mobile */
.nav-mobile {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: var(--shadow);
    z-index: 999;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile .nav-link {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    margin-top: 160px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2C2C54 100%);
    color: var(--white);
    padding: 80px 20px;
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    max-width: 760px;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.hero-actions-note {
    font-size: 13px;
    color: #D8D8E8;
    margin: 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.hero-description {
    font-size: 16px;
    color: #B0B0B0;
    margin-bottom: 30px;
}

/* Formulário Hero */
.hero-form {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

.form-title {
    color: var(--dark-blue);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

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

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--accent-orange);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--text-dark);
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

#placa {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
}

.form-disclaimer {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 15px;
}

/* ============================================
   BOTÕES
   ============================================ */

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    justify-content: center;
}

.btn-primary:hover {
    background-color: #B71C1C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-block {
    width: 100%;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-secondary {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #0F0F2E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
    background-color: var(--light-bg);
    padding: 50px 20px;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.trust-item > :first-child {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item i {
    font-size: 40px;
    color: var(--primary-red);
    line-height: 1;
}

.trust-logo {
    width: auto;
    max-height: 60px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: brightness(1.1);
}

.trust-item p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   SEÇÃO DE BENEFÍCIOS
   ============================================ */

.beneficios {
    padding: 100px 20px;
    background-color: var(--white);
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.beneficio-card {
    background-color: var(--light-bg);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.beneficio-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.beneficio-icon {
    font-size: 48px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.beneficio-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.beneficio-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   SEÇÃO DE DIFERENCIAIS
   ============================================ */

.diferenciais {
    background-color: var(--light-bg);
    padding: 100px 20px;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.diferencial-item {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.diferencial-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.diferencial-icon {
    font-size: 48px;
    color: var(--success-green);
    margin-bottom: 20px;
}

.diferencial-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.diferencial-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   SEÇÃO DE PLANOS
   ============================================ */

.planos {
    padding: 100px 20px;
    background-color: var(--white);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.plano-card {
    background-color: var(--light-bg);
    padding: 35px 25px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.plano-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.plano-destaque {
    background-color: var(--dark-blue);
    color: var(--white);
    border-color: var(--primary-red);
    transform: scale(1.05);
}

.plano-destaque .plano-nome,
.plano-destaque .plano-features {
    color: var(--white);
}

.plano-destaque .plano-features li {
    color: #E0E0E0;
}

.plano-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.plano-nome {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 25px;
    margin-top: 10px;
}

.plano-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plano-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plano-features i {
    color: var(--primary-red);
    font-size: 16px;
}

.plano-card .btn-secondary,
.plano-card .btn-primary {
    width: 100%;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    background-color: var(--light-bg);
    padding: 100px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-stars {
    color: #FFC107;
    margin-bottom: 15px;
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.testimonial-location {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: 100px 20px;
    background-color: var(--white);
}

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

.faq-item {
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: var(--light-bg);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-blue);
    transition: var(--transition);
    font-family: var(--font-primary);
}

.faq-question:hover {
    background-color: #EEEEEE;
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary-red);
}

.faq-item.active .faq-question {
    background-color: var(--primary-red);
    color: var(--white);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--white);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background-color: var(--white);
}

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

.faq-answer p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* ============================================
   CTA FINAL
   ============================================ */

.cta-final {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2C2C54 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.cta-final h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-final p {
    font-size: 18px;
    color: #E0E0E0;
    margin-bottom: 40px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 20px 30px;
}

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

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #E0E0E0;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--primary-red);
}

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: #B0B0B0;
    margin-bottom: 10px;
}

.footer-bottom a {
    color: var(--primary-red);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    font-size: 12px;
    color: #999;
}

/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    z-index: 100;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
    .logo-img {
        height: 90px;
        max-width: 135px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .btn-whatsapp-header {
        display: none;
    }
    
    .hero {
        margin-top: 140px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .planos-grid {
        grid-template-columns: 1fr;
    }
    
    .plano-destaque {
        transform: scale(1);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .header {
        padding: 12px 0;
    }
    
    .logo-img {
        height: 70px;
        max-width: 105px;
    }
    
    .hero {
        margin-top: 120px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-subtitle {
        font-size: 8px;
    }
    
    .hero {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-form {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .form-group input {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .trust-item i {
        font-size: 36px;
    }
    
    .trust-item p {
        font-size: 14px;
    }
    
    .beneficios,
    .diferenciais,
    .planos,
    .testimonials,
    .faq,
    .cta-final {
        padding: 60px 20px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .beneficios-grid,
    .diferenciais-grid,
    .planos-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .beneficio-card,
    .diferencial-item,
    .plano-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .beneficio-icon {
        font-size: 40px;
    }
    
    .diferencial-icon {
        font-size: 40px;
    }
    
    .cta-final h2 {
        font-size: 28px;
    }
    
    .cta-final p {
        font-size: 16px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-title {
        font-size: 22px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .cta-final h2 {
        font-size: 22px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 16px;
        font-size: 13px;
    }
}


/* ============================================
   HERO CARD + POPUP WHATSAPP
   ============================================ */

.hero-contact-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    max-width: 580px;
    width: 100%;
    justify-self: center;
}

.hero-contact-header {
    background: #C61E1E;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-contact-logo {
    width: 180px;
    max-width: 70%;
    height: auto;
}

.hero-contact-body {
    padding: 32px;
    text-align: center;
}

.hero-contact-text {
    color: #333D3D;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.js-open-whatsapp-popup {
    cursor: pointer;
}

.lp-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 12, 38, 0.68);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 3000;
}

.lp-popup-overlay[hidden] {
    display: none !important;
}

.lp-popup {
    width: 100%;
    max-width: 520px;
    border-radius: 0;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
    animation: lpPopupFade 0.22s ease-out;
}

@keyframes lpPopupFade {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lp-popup-header {
    min-height: 106px;
    background: #C61E1E;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 56px 18px 56px;
}

.lp-popup-logo {
    width: 118px;
    max-width: 55%;
    height: auto;
}

.lp-popup-close {
    position: absolute;
    top: 18px;
    right: 20px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
}

.lp-popup-body {
    background: #F5F5F5;
    padding: 34px 26px 22px;
}

.lp-popup-description {
    color: #333D3D;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    max-width: 430px;
    margin: 0 auto 22px;
}

.lp-popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-popup-field {
    width: 100%;
}

.lp-popup-field input {
    width: 100%;
    height: 52px;
    border: 1px solid #D7D7D7;
    border-radius: 4px;
    background: #ffffff;
    color: #444;
    font-size: 16px;
    padding: 0 16px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.lp-popup-field input:focus {
    border-color: #C61E1E;
    box-shadow: 0 0 0 3px rgba(198, 30, 30, 0.08);
}

.lp-popup-phone-wrap {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0;
}

.lp-country-prefix {
    height: 52px;
    border: 1px solid #D7D7D7;
    border-right: none;
    border-radius: 4px 0 0 4px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #444;
    font-size: 18px;
    user-select: none;
}

.lp-country-caret {
    font-size: 12px;
    transform: translateY(1px);
}

.lp-popup-phone-wrap input {
    border-radius: 0 4px 4px 0;
}

.lp-popup-submit {
    margin-top: 6px;
    align-self: flex-end;
    min-width: 182px;
    height: 48px;
    border: none;
    border-radius: 4px;
    background: #C61E1E;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.lp-popup-submit:hover {
    background: #B11919;
    transform: translateY(-1px);
}

body.popup-open {
    overflow: hidden;
}

.fallback-whatsapp-float {
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rdstation-popup-position-bottom_right {
    z-index: 3200 !important;
}

@media (max-width: 991px) {
    .hero-contact-card {
        max-width: 100%;
    }

    .hero-contact-body {
        padding: 28px 22px;
    }

    .hero-contact-text {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .hero-contact-header {
        min-height: 96px;
    }

    .lp-popup-overlay {
        padding: 14px;
        align-items: center;
    }

    .lp-popup {
        max-width: 100%;
    }

    .lp-popup-header {
        min-height: 90px;
        padding: 14px 50px 14px 50px;
    }

    .lp-popup-logo {
        width: 102px;
    }

    .lp-popup-close {
        top: 12px;
        right: 14px;
        font-size: 36px;
    }

    .lp-popup-body {
        padding: 24px 16px 18px;
    }

    .lp-popup-description {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .lp-popup-field input,
    .lp-country-prefix {
        height: 50px;
        font-size: 15px;
    }

    .lp-popup-submit {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .hero-contact-body {
        padding: 24px 16px;
    }

    .lp-popup-phone-wrap {
        grid-template-columns: 58px 1fr;
    }

    .lp-country-prefix {
        gap: 4px;
        font-size: 16px;
    }
}


.hero-contact-card,
.hero-contact-header,
.hero-contact-body,
.hero-contact-text,
.hero-contact-logo {
    display: none !important;
}

@media (max-width: 991px) {
    .hero-text {
        max-width: 100%;
    }

    .hero-actions {
        align-items: stretch;
    }
}
