:root {
  --primary: #00C47D;
  --secondary: #4C9AFF;
  --light: #F4F4F4;
  --dark: #333333;
  --font-family: 'Poppins', sans-serif;
}
body {
  font-family: var(--font-family);
  background-color: var(--light);
  scroll-behavior: smooth;
}
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 0.75rem 1rem;
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}
.navbar-brand img{
  width: 150px;
}
.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
}
.hero {
  min-height: 60vh;
  background-color: #fff;
  background-image: radial-gradient(#eeeeee 1px, transparent 1px);
  background-size: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 4rem;
}
.highlight-text {
  color: var(--primary);
}
.btn-highlight {
  background-color: var(--primary);
  color: #fff;
  border: none;
}
.btn-highlight:hover {
  background-color: var(--secondary);
  color: #fff;
}
.flow-card {
  border: 3px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flow-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.flow-icon i {
  font-size: 2rem;
}
.border-step-1 {
  border-color: #ff0054;
}
.border-step-1 .flow-icon i {
  color: #ff0054;
}
.border-step-2 {
  border-color: #FF8C00;
}
.border-step-2 .flow-icon i {
  color: #FF8C00;
}
.border-step-3 {
  border-color: #00C47D;
}
.border-step-3 .flow-icon i {
  color: #00C47D;
}
.border-step-4 {
  border-color: #4C9AFF;
}
.border-step-4 .flow-icon i {
  color: #4C9AFF;
}
.flow-step-title {
  font-weight: 600;
  color: #333;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  text-align: center;
}
.section-title::after {
  content: "";
  width: 50px;
  height: 4px;
  background-color: var(--primary);
  display: block;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn-primary:hover {
  background-color: var(--secondary);
  border-color: var(--light);
}
.accordion-button {
  font-weight: 600;
  color: var(--dark);
}
.accordion-button:not(.collapsed) {
  background-color: var(--primary);
  color: #fff;
}
#enjoy {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
footer {
  background-color: var(--dark);
}
#testimonialCarousel .carousel-item {
  padding: 2rem 0;
}

#testimonialCarousel .card {
  margin: 0 auto;
  max-width: 600px;
}
.pricing-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-5px);
}
.price {
  font-size: 2rem;
  font-weight: 700;
}
.price-value {
  font-size: 2.5rem;
}
.price-period {
  font-size: 1.2rem;
  vertical-align: super;
}
.benefits-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.benefits-list li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
}
.pricing-card .card-footer {
  background-color: #fff;
  border-top: 1px solid #eee;
}
.balance-info {
  border-radius: 8px;
  margin-top: 1rem;
}
.balance-info h6 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--dark);
}
.balance-item {
  background: #fff;
  padding: 0.3rem;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 0.5rem;
}
.balance-item i {
  font-size: 1.5rem;
  color: var(--primary);
}
.balance-item p {
  font-size: 0.9rem;
  margin: 0;
  margin-top: 0.25rem;
}
.hover-animate:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}
#problem-solution .bg-problem {
  background-color: #ffe5e5;
}
#problem-solution .bg-solution {
  background-color: #e5ffe5;
}
.benefit-box {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.benefit-icon i {
  font-size: 2.5rem;
  color: var(--primary);
}
.benefit-title {
  font-weight: 600;
  color: var(--dark);
}
.benefit-text {
  color: #555;
}
#audience {
  background-color: var(--light);
}
.audience-box {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.audience-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.audience-icon {
  font-size: 2.5rem;
  color: var(--primary);
}
#guarantee-cancellation {
  background: linear-gradient(135deg, #f0f9ff, #e3f2fd);
}
#guarantee-cancellation .card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
#guarantee-cancellation .lead {
  color: var(--dark);
}
#guarantee-cancellation .section-title {
  color: var(--dark);
}
.footer-section {
  background-color: var(--dark);
}
.footer-section p {
  margin: 0;
  font-size: 0.95rem;
}
.footer-email,
.footer-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.footer-email:hover,
.footer-link:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  #how-it-works .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #benefits .col-md-4, #audience .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #guarantee-cancellation .col-md-5,
  #guarantee-cancellation .col-md-7 {
    text-align: center;
  }
  .guarantee-content {
    margin-top: 1rem;
  }
}

#nichos .icon-card {
  background: #f8f9fa;
  border-radius: 0.75rem;
  padding: 2rem 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333;
  text-align: center;
}
#nichos .icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}
#nichos .icon-square {
  width: 64px;
  height: 64px;
  background: rgba(13,110,253,0.15);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
#nichos .icon-square .bi {
  font-size: 1.75rem;
  color: #0d6efd;
}

#app-access .section-title {
  margin-bottom: 1rem;
}
#app-access .lead {
  color: var(--dark);
  margin-bottom: 1.5rem;
}
#app-access .carousel-item img {
  max-width: 250px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.dark-arrows .carousel-control-prev-icon,
.dark-arrows .carousel-control-next-icon {
  filter: invert(1);
}

.stepper {
  list-style: none;
  padding: 0;
  position: relative;
}
.stepper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #dee2e6;
  z-index: 1;
}
.stepper .step {
  position: relative;
  text-align: center;
  width: 33.333%;
  z-index: 2;
  cursor: pointer;
  transition: color .3s;
}
.stepper .step .circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 2px solid #dee2e6;
  border-radius: 50%;
  background: #fff;
  transition: all .3s;
}
.stepper .step.active .circle {
  border-color: #20c997;
  background: #20c997;
  color: #fff;
  box-shadow: 0 4px 12px rgba(32,201,151,0.3);
}
.stepper .step .label {
  display: block;
  margin-top: .5rem;
  font-weight: 500;
  color: #6c757d;
  transition: color .3s;
}
.stepper .step.active .label {
  color: #343a40;
}
.stepper .step .circle .bi {
  font-size: 1.2rem;
}

.tab-content .tab-pane {
  display: none;
  opacity: 0;
  transition: opacity .3s;
}
.tab-content .tab-pane.active {
  display: block;
  opacity: 1;
}

.shadow-modern {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 2rem 3rem rgba(0,0,0,0.1);
  transition: transform .3s, box-shadow .3s;
}
.pricing-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 3rem 4rem rgba(0,0,0,0.15);
}

.header-essencial {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}
.header-performance {
  background: linear-gradient(135deg, #28a745, #1e7e34);
}
.header-premium {
  background: linear-gradient(135deg, #343a40, #212529);
}

.features li,
.bonus ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .5rem;
  color: #444;
}
.features li::before,
.bonus ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--bs-primary);
  font-weight: bold;
}

.card-body h6 {
  font-size: 1rem;
  margin-bottom: .75rem;
  color: #333;
  text-transform: uppercase;
}

.leads .cost {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.price-section {
  font-family: 'Segoe UI', sans-serif;
}
.price {
  font-size: 2.5rem;
  font-weight: 800;
}
.period {
  font-size: 1rem;
  color: #666;
  margin-left: .25rem;
}

.btn-essencial {
  background: #00c6ff;
  color: #fff;
  border-radius: .5rem;
  padding: .75rem 0;
  font-weight: 600;
  transition: background .3s;
}
.btn-essencial:hover { background: #0072ff;color: #fff; }

.btn-performance {
  background: #28a745;
  color: #fff;
  border-radius: .5rem;
  padding: .75rem 0;
  font-weight: 600;
}
.btn-performance:hover { background: #1e7e34;color: #fff;}

.btn-premium {
  background: #343a40;
  color: #fff;
  border-radius: .5rem;
  padding: .75rem 0;
  font-weight: 600;
}
.btn-premium:hover { background: #212529;color: #fff; }

@media (max-width: 767px) {
  .price {
    font-size: 2rem;
  }
}

#ai-communication-builder .btn-channel {
  background-color: #e9ecef;
  color: #333;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

#ai-communication-builder .btn-channel:hover {
  background-color: #dee2e6;
  transform: translateY(-2px);
}

#ai-communication-builder .btn-channel.active {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 196, 125, 0.4);
}

#message-preview .message-content {
  display: none;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

#message-preview .message-content.active {
  display: block;
  opacity: 1;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

#generate-with-ai {
  transition: transform 0.2s ease;
}

#generate-with-ai:active {
    transform: scale(0.95);
}

.whatsapp-chat {
    background-color: #E5DDD5;
    padding: 15px;
    border-radius: 8px;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
}

.whatsapp-message {
    background-color: #DCF8C6;
    padding: 10px 15px;
    border-radius: 12px 12px 0 12px;
    max-width: 80%;
    margin-left: auto;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

#capture-page-builder .controls-wrapper {
    border: 1px solid #dee2e6;
}

#page-preview-wrapper {
    transition: all 0.4s ease-in-out;
}

#mock-page {
    display: flex;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

#page-preview-wrapper.layout-left-active #mock-page {
    flex-direction: row;
}
#page-preview-wrapper.layout-left-active .mock-image-container {
    width: 45%;
    flex-shrink: 0;
}
#page-preview-wrapper.layout-left-active .mock-content {
    padding: 2rem;
    width: 55%;
}

#page-preview-wrapper.layout-top-active #mock-page {
    flex-direction: column;
    text-align: center;
}
#page-preview-wrapper.layout-top-active .mock-image-container {
    width: 100%;
    height: 180px;
}
#page-preview-wrapper.layout-top-active .mock-content {
    padding: 1.5rem;
    width: 100%;
}

.mock-image-container {
    transition: all 0.4s ease-in-out;
}

.mock-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#mock-page form div {
    transition: all 0.3s ease-in-out;
    max-height: 100px;
    opacity: 1;
    overflow: hidden;
}

#mock-page form div.d-none {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0 !important;
    pointer-events: none;
}

.use-case-previews {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.use-case-card {
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#enjoy {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    overflow: hidden;
}

#sector-selector .list-group-item {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(5px);
}

#sector-selector .list-group-item h5 {
    font-weight: 600;
}

#sector-selector .list-group-item small {
    color: rgba(255, 255, 255, 0.8);
}

#sector-selector .list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

#sector-selector .list-group-item.active {
    background-color: #fff;
    color: var(--primary);
    border-color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

#sector-selector .list-group-item.active small,
#sector-selector .list-group-item.active i {
    color: var(--dark);
}

#sector-display {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 1.5rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    position: relative;
}

#display-icon-wrapper {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.display-counter-wrapper {
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
    z-index: 2;
}

#display-counter {
    font-size: 7rem;
}

#display-unit {
    font-size: 2rem;
    font-weight: 500;
    margin-left: 0.5rem;
    vertical-align: middle;
}

#sector-display .lead {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-top: 0;
    z-index: 2;
}

#sector-display {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 1.5rem;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    position: relative;
    padding-top: 2rem;
}

.display-copy-text {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    z-index: 2;
}