/* style.css */
@import url('[https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap](https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap)');

:root {
  --primary-color: #007bff;
  --secondary-color: #0056b3;
  --accent-color: #ffc107; /* Amarelo para destaque */
  --success-color: #28a745;
  --danger-color: #dc3545;
  --text-color: #343a40; 
  --light-text-color: #f8f9fa; 
  --footer-background: #212529;
  --border-color: #dee2e6;

  --font-family: 'Poppins', sans-serif;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.12);
  --border-radius: 8px;

  /* Cores dos slides */
  --slide-hero-bg: #3498db;       
  --slide-advantages-bg: #27ae60; 
  --slide-pricing-bg: #1abc9c;    
  --slide-social-proof-bg: #e67e22;
  --slide-testimonials-bg: #8e44ad; 
  --slide-bonus-bg: #008080; /* Azul Petróleo Escuro para Bônus */
  --slide-faq-bg: #9b59b6;        
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.7;
  color: var(--light-text-color); 
  background-color: var(--slide-hero-bg); 
  font-size: 16px;
  transition: background-color 0.8s ease-in-out; 
  overflow-x: hidden;
}

.main-wrapper {
  overflow: hidden;
}

.slide {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 70px 20px; 
  text-align: center;
  position: relative;
  width: 100%; 
}

.slide h1, .slide h2, .slide h3, .slide h4, .slide p, .slide li, .slide .section-subtitle, .slide summary {
    color: var(--light-text-color);
}
.slide .price { 
     color: var(--accent-color);
}
.slide .duration, .slide .advantage-card p, .slide .pricing-card ul li, .slide .faq-item details p, .slide .testimonial-quote, .slide .bonus-item p {
    color: rgba(255, 255, 255, 0.9); 
}
.slide .testimonial-author {
    color: var(--accent-color);
    font-weight: 600;
}
.slide .android-highlight { 
    color: var(--accent-color);
    font-weight: 600;
}


.container {
  width: 90%;
  max-width: 1140px;
  position: relative;
  z-index: 2; 
}


h1, h2, h3, h4 {
  margin-bottom: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: 2.7rem; } 
h2 { font-size: 2.1rem; text-align: center; margin-bottom: 1rem;}
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2.5rem auto; 
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.slide a { 
    color: var(--accent-color);
    font-weight: 600;
}
.slide a:hover {
    color: var(--light-text-color);
    text-decoration: underline;
}


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

ul {
  list-style: none;
  padding-left: 0;
}

/* Seção Hero (Primeiro Slide) */
#particles-js-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
}

.logo-bestnet {
  max-width: 140px; 
  margin-bottom: 1.5rem;
}

.hero-section h1 {
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.25);
}

.hero-section .welcome-message {
  font-size: 1.2rem; 
  margin-bottom: 1.5rem; 
}

.hero-buttons-wrapper {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 12px; 
    margin-bottom: 1.5rem;
}


.operator-info-hero {
    font-size: 1rem; 
    margin-top: 1.5rem;
    line-height: 1.6;
}
.operator-info-hero i.fa-android {
    color: #a4c639; 
    margin-right: 5px;
}
.operator-info-hero i.fa-signal {
    margin-right: 5px;
    color: var(--accent-color);
}
.operator-info-hero .operator-note {
    font-size: 0.8rem;
    display: block;
    opacity: 0.8;
}


/* Botões CTA */
.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: #333; 
  padding: 14px 32px; 
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1.05rem; 
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: var(--box-shadow);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #ffb300; 
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-hover);
  color: #222;
}

.cta-button.hero-cta {
  font-size: 1.15rem; 
  padding: 16px 38px; 
  width: auto; 
  max-width: 300px; 
}

.cta-button.secondary-cta {
  background-color: transparent;
  color: var(--light-text-color);
  border: 2px solid var(--light-text-color);
}

.cta-button.secondary-cta:hover {
  background-color: var(--light-text-color);
  color: var(--text-color); 
}

.play-store-button { 
    display: inline-flex; 
    align-items: center;
    background-color: #2c3e50; 
    color: #fff;
    padding: 8px 16px; 
    border-radius: var(--border-radius);
    text-decoration: none;
    font-family: var(--font-family);
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2); 
    width: auto; 
    max-width: 200px; 
    justify-content: center; 
    border: 1px solid rgba(255,255,255,0.2); 
}
.play-store-button:hover {
    background-color: #34495e; 
    transform: translateY(-1px);
    color: #fff; 
}
.play-store-button img {
    width: 24px; 
    height: 24px;
    margin-right: 8px; 
    border-radius: 4px; 
}
.play-store-button div {
    text-align: left;
}
.play-store-button span {
    font-size: 0.7rem; 
    display: block;
    line-height: 1;
    color: #bdc3c7; 
}
.play-store-button strong {
    font-size: 0.9rem; 
    display: block;
    line-height: 1.2;
    font-weight: 600;
}

.download-desktop-button { 
    display: none !important; 
}

.hero-apk-button { 
    /* Estilos já definidos por .play-store-button */
}

.footer-apk-button { 
    margin-top: 0; 
    margin-bottom: 1rem; 
    background-color: #34495e; 
}
.footer-apk-button:hover {
    background-color: #2c3e50;
}


/* Seção de Vantagens */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 25px; 
}

.advantage-card {
  background-color: rgba(0,0,0,0.15); 
  padding: 25px; 
  border-radius: var(--border-radius);
  text-align: left;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; 
  flex-direction: column; 
  justify-content: flex-start; 
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
  background-color: rgba(0,0,0,0.25);
}

.advantage-icon {
  font-size: 2.5rem; 
  margin-bottom: 1rem;
  text-align: center;
  height: 40px; 
  line-height: 40px; 
}
.advantage-icon i.fa-android {
    color: #a4c639; 
}
.advantage-icon i:not(.fa-android):not(.fa-handshake-slash):not(.fa-broadcast-tower) { 
    color: var(--accent-color);
}
.advantage-icon i.fa-handshake-slash, .advantage-icon i.fa-broadcast-tower { 
    color: var(--accent-color); 
}


.advantage-card h3 {
  font-size: 1.3rem; 
  margin-bottom: 0.8rem;
  text-align: center;
  margin-top: 0.5rem; 
}
.advantage-card p {
    font-size: 0.95rem; 
    flex-grow: 1; 
}


/* Seção de Planos/Preços */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 25px;
  align-items: stretch;
}

.pricing-card {
  background-color: rgba(0,0,0,0.15);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  border: 1px solid rgba(255,255,255,0.15);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
   background-color: rgba(0,0,0,0.25);
}

.pricing-card.popular {
  border: 2px solid var(--accent-color);
  transform: scale(1.03); 
}

.pricing-card.popular:hover {
    transform: scale(1.06) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: #333;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem; 
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.4rem; 
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2.3rem; 
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.duration {
  font-size: 0.85rem; 
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  margin-bottom: 1.8rem; 
  text-align: left;
  flex-grow: 1;
}

.pricing-card ul li {
  margin-bottom: 0.7rem; 
  font-size: 0.9rem;
}

.pricing-card ul li i.fa-credit-card { 
    color: var(--success-color); 
}
.pricing-card ul li i:not(.fa-credit-card) { 
  color: var(--accent-color); 
}


.pricing-card .cta-button {
  width: 100%;
  margin-top: auto;
}

.contact-plan p {
    font-size: 1.05rem; 
}

.centered-cta-container {
    text-align: center;
    margin-top: 30px; 
}
.centered-cta-container p {
    font-size: 1.05rem; 
    margin-bottom: 1rem;
}


/* Seção de Prova Social */
.social-proof-section h3 {
  font-size: 1.9rem; 
}
.social-proof-section p {
  font-size: 1.1rem; 
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Seção de Depoimentos */
.testimonials-section {
    /* A cor de fundo é definida por data-background */
}
.testimonial-carousel-wrapper {
    max-width: 750px; 
    width: 100%;
    margin: 0 auto;
    overflow: hidden; 
    position: relative; 
    background-color: rgba(0,0,0,0.1); 
    border-radius: var(--border-radius);
    padding: 30px 0; 
    box-shadow: var(--box-shadow);
    min-height: 300px; 
}
.testimonial-carousel {
    position: relative; 
    width: 100%;
    height: 100%; 
}
.testimonial-slide {
    min-width: 100%; 
    box-sizing: border-box;
    padding: 20px 30px; 
    text-align: center;
    opacity: 0; 
    transition: opacity 0.7s ease-in-out; 
    position: absolute; 
    top:0; left:0; width:100%; 
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; 
}
.testimonial-slide.active {
    opacity: 1; 
    position: relative; 
    z-index: 2; 
}
.testimonial-slide:not(.active) {
    z-index: 1;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover; 
    border: 3px solid var(--accent-color); 
}

.testimonial-quote {
    font-size: 1.1rem; 
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    position: relative;
    padding: 0 10px;
}
.testimonial-quote::before, .testimonial-quote::after {
    content: '"';
    font-size: 2.3rem; 
    color: var(--accent-color);
    position: absolute;
    line-height: 1;
}
.testimonial-quote::before {
    top: -5px;
    left: -10px; 
}
.testimonial-quote::after {
    bottom: -10px; 
    right: -0px;  
}
.testimonial-author {
    font-size: 1rem;
    margin-top: 0.5rem; 
    font-weight: 600;
}
.testimonial-author::before {
    content: "— ";
}

/* Seção de Bônus */
.bonus-section {
    /* Cor de fundo definida por data-background */
}
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.bonus-item {
    background-color: rgba(0,0,0,0.15);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255,255,255,0.15);
}
.bonus-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}
.bonus-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.bonus-item p {
    font-size: 0.95rem;
    margin-bottom: 0; /* Remove margem inferior do parágrafo do bônus */
}
.bonus-contact {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: italic;
}


/* Seção FAQ */
.faq-item {
  background-color: rgba(0,0,0,0.15);
  margin-bottom: 15px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  text-align: left;
}

.faq-item details {
  padding: 18px 20px; 
}

.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem; 
}

.faq-item summary i {
  transition: transform 0.3s ease;
}

.faq-item details[open] summary i {
  transform: rotate(180deg);
}

.faq-item p {
  margin-top: 12px; 
  padding-left: 10px;
  border-left: 3px solid var(--accent-color);
  font-size: 0.95rem; 
}

/* Rodapé */
footer {
  background-color: var(--footer-background);
  color: #adb5bd;
  padding: 35px 20px 20px 20px; 
  text-align: center; 
  position: relative;
  z-index: 10;
}
.footer-container { 
    display: flex;
    flex-direction: column;
    align-items: center; 
    width: 100%; 
}

.footer-logo {
    max-width: 110px; 
    margin-bottom: 1rem;
}
.footer-info, .footer-contact {
    font-size: 0.9rem; 
    margin-bottom: 0.8rem;
}
.footer-contact a {
    color: var(--accent-color);
}
.footer-contact a:hover {
    color: #ffD700;
}

.footer-payment-methods {
    margin: 1rem 0;
    font-size: 0.85rem;
}
.footer-payment-methods p {
    margin-bottom: 0.5rem;
    color: #ccc;
}
.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; 
    font-size: 1.8rem; 
}
.payment-icons i {
    color: #ddd; 
}
.payment-icons .fa-pix {
    color: #32BCAD; 
}
.payment-icons .fa-cc-visa { color: #1A1F71;}
.payment-icons .fa-cc-mastercard { color: #EB001B;}
.payment-icons .fa-cc-amex { color: #016FD0;}
.payment-icons span { 
    font-size: 0.75rem;
    color: #aaa;
    margin-left: 5px;
}


.footer-legal-section {
    margin: 1.5rem auto; 
    width: 100%;
    max-width: 700px; 
    display: flex; 
    flex-direction: column;
    align-items: center; 
}
.footer-details {
    background-color: rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%; 
    max-width: 600px; 
}
.footer-details summary {
    padding: 12px 15px;
    font-weight: 600;
    cursor: pointer;
    color: var(--light-text-color);
    list-style: none; 
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    text-align: left; 
}
.footer-details summary::-webkit-details-marker { 
    display: none;
}
.footer-details summary::after { 
    content: '\f078'; 
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
    margin-left: 10px; 
}
.footer-details[open] summary::after {
    transform: rotate(180deg);
}
.details-content {
    padding: 15px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #ccc; 
    text-align: left; 
}
.details-content h4 {
    color: var(--accent-color);
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 5px;
}
.details-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 10px;
}
.details-content ul li {
    margin-bottom: 5px;
}


.copyright {
  margin-top: 1.2rem; 
  font-size: 0.8rem; 
  color: #6c757d;
}
.footer .android-highlight { 
    color: var(--accent-color);
    font-weight: normal; 
}


/* Botão Fixo do WhatsApp */
.whatsapp-fixed {
  position: fixed;
  bottom: 20px; 
  right: 20px;  
  background-color: var(--success-color);
  color: white;
  width: 55px;  
  height: 55px; 
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem; 
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-fixed:hover {
  background-color: #1e7e34;
  transform: scale(1.1);
  color: white;
  text-decoration: none;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.75); 
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background-color: #fff; 
  color: var(--text-color); 
  margin: 12% auto; 
  padding: 30px;    
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 460px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: center;
  position: relative;
  animation: slideIn 0.4s ease-out;
}

.close-button {
  color: #999; 
  position: absolute;
  top: 12px;  
  right: 15px; 
  font-size: 26px; 
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-button:hover,
.close-button:focus {
  color: var(--danger-color); 
}

.modal h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.7rem; 
  color: var(--primary-color);
}
.modal p {
    font-size: 1rem; 
    margin-bottom: 1.5rem;
    color: #555;
}
.modal p strong {
    color: var(--secondary-color);
}

#nameStep { /* Container para o campo de nome */
    margin-bottom: 1rem;
}

#operatorStep {
    margin-bottom: 1.5rem;
}
#operatorStep p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #444;
}
.operator-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 1rem;
}
.operator-button {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    font-size: 0.9rem;
    color: var(--text-color);
}
.operator-button:hover {
    background-color: #e0e0e0;
    border-color: #ccc;
}
.operator-button.selected {
    background-color: var(--success-color);
    color: white;
    border-color: var(--success-color);
}


#leadName {
  width: 100%; 
  padding: 12px;
  /* margin-bottom: 1.5rem; // Removido, #nameStep controla a margem */
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
}
#leadName:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.modal .cta-button {
    width: 100%;
    padding: 12px;
    font-size: 1.05rem;
}
.modal .cta-button i {
    margin-left: 8px;
}

.error-message {
    color: var(--danger-color);
    font-size: 0.85rem; 
    margin-top: 10px;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideIn {
  from {transform: translateY(-40px); opacity: 0;} 
  to {transform: translateY(0); opacity: 1;}
}


/* Media Queries para Responsividade */
@media (min-width: 769px) { 
    .hero-buttons-wrapper {
        flex-direction: row; 
        justify-content: center;
    }
    
    .footer-legal-section {
        align-items: center; 
    }
}


@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    }
    .pricing-card.popular {
        transform: scale(1);
    }
     .pricing-card.popular:hover {
        transform: translateY(-5px) scale(1.02);
    }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.3rem; }

  .slide {
      padding: 60px 15px;
  }

  .hero-section .welcome-message {
    font-size: 1.05rem;
  }
  .cta-button.hero-cta { 
    font-size: 1.1rem;
    padding: 14px 28px;
    width: 100%; 
    max-width: 320px;
  }
  .play-store-button.hero-apk-button { 
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }


  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .advantage-card {
      padding: 20px;
  }
  .advantage-icon {
      font-size: 2.3rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
   .pricing-card {
      margin-bottom: 20px;
  }
  .pricing-card:last-child {
      margin-bottom: 0;
  }

  .modal-content {
    margin: 15% auto; 
    padding: 25px;
  }
  .footer-legal-section {
    max-width: 90%; 
    padding: 0 10px; 
  }
  .testimonial-carousel-wrapper {
    padding: 20px 10px; 
    min-height: 280px; 
  }
  .testimonial-slide {
    padding: 15px 20px; 
  }
  .testimonial-quote {
    font-size: 1.05rem;
  }
  .testimonial-quote::before { left: -5px; }
  .testimonial-quote::after { right: 0px; }
  .testimonial-photo {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }
  .payment-icons {
    flex-wrap: wrap; 
    gap: 8px;
    font-size: 1.6rem;
  }
  .bonus-grid {
    grid-template-columns: 1fr; /* Bônus em uma coluna no mobile */
  }
  .operator-buttons {
    gap: 8px;
  }
  .operator-button {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.95rem; }

    .slide {
        padding: 50px 10px; 
    }
    .hero-section .welcome-message {
        font-size: 0.95rem;
    }
     .cta-button.hero-cta {
        font-size: 1rem;
        padding: 12px 22px;
    }
    .play-store-button.hero-apk-button { 
        padding: 8px 15px;
    }
    .play-store-button img {
        width: 22px; 
        height: 22px;
    }
    .play-store-button span {
        font-size: 0.65rem; 
    }
    .play-store-button strong {
        font-size: 0.85rem; 
    }

    .logo-bestnet {
        max-width: 110px;
    }
    .whatsapp-fixed {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }
    .modal-content {
        padding: 20px;
        margin-top: 25%; 
    }
    .modal h2 {
        font-size: 1.5rem;
    }
     #leadName {
        padding: 10px;
        font-size: 0.95rem;
    }
    .modal .cta-button {
        padding: 10px;
        font-size: 1rem;
    }
    .footer-details summary {
        font-size: 0.95rem;
        padding: 10px 12px;
    }
    .details-content {
        font-size: 0.8rem;
        padding: 10px 12px;
    }
    .details-content h4 {
        font-size: 0.9rem;
    }
    .testimonial-quote {
      font-size: 1rem;
    }
    .testimonial-photo {
        width: 60px;
        height: 60px;
    }
    .payment-icons {
        font-size: 1.5rem;
    }
}
