/*
Theme Name: MrCash Theme
Author: Alexis Cáceres 
Description: A custom theme built for MrCash.
Version: 1.0
*/


/* Global Styles */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  color: #000;
  line-height: 1.6;

  overflow-x: hidden;
}

/* Header */
header {
  /* background: #1A3C58
; */
  background: #1A3C58
;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 90%;
  z-index: 1000;
}

.logo-img {
  height: 65px;
  width: 120px;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

.logo span {
  color: #36B26E
;
}

/* 2. Estilos por defecto (pantallas grandes) */
.menu-toggle {
  display: none;              /* oculto siempre en desktop */
}

.navbar {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;             /* horizontal por defecto */
  gap: 1.5rem;
}

.nav-links a {
  color: #fff !important;
  text-decoration: none !important;
  transition: color 0.3s !important;
}

.nav-links a:hover {
  color: #36B26E !important;
}

/* 3. Responsive (móviles) */
@media (max-width: 768px) {

  /* Mostrar botón en móvil */
  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
  }

  /* Ocultar menú por defecto */
  .nav-links {
    display: none;           /* colapsado hasta que se añada .show */
    flex-direction: column;
    position: absolute;
    top: 100%;               /* justo debajo del header */
    left: 0;
    width: 100%;
    background-color: #000;
    padding: 0.5rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    z-index: 1000;
  }

  /* Cuando esté activo */
  .nav-links.show {
    display: flex;
  }

  /* Enlaces dentro del menú móvil */
  .nav-links a {
    padding: 0.75rem 1rem;
    border-top: 1px solid #222;
    margin: 0;              /* reinicia márgenes de desktop */
  }
}

/* nav a {
  color: #fff!important;
  margin-left: 1.5rem!important;
  text-decoration: none!important;
  transition: color 0.3s!important;
}

nav a:hover {
  color: #36B26E
!important;
} */

/* Hero Section */
/* .hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  color: white;
}

.hero-content {
  width: 50%;
} */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 5%;
  color: white;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Very important! */
  z-index: -1; /* Send it to the back */
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Floating Form - Versión modificada */
.floating-form {
  background: #1c2423;
  padding: 60px;
  border-radius: 10px;
  width: 350px;
  margin-left: auto; /* Alineación normal en desktop */
  max-width: 100%;
}

.floating-form h3 {
  color: #36B26E;
  margin-top: 0;
}

.floating-form {
  max-width: 400px; /* Ajusta según tu necesidad */
  margin: 0 auto;
}

/* Aplicar mismo ancho a todos los elementos del formulario */
.wpcf7-form-control {
  width: 100% !important;
  box-sizing: border-box;
  padding: 12px 15px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Especificamente para el botón de submit */
.wpcf7-submit {
  background-color: #007bff; /* Color de tu tema */
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wpcf7-submit:hover {
  background-color: #0056b3; /* Color hover más oscuro */
}

/* Alinear texto de cabecera */
.floating-form h3 {
  text-align: center;
  margin-bottom: 20px;
}

/* Ajustar espacios entre elementos */
.wpcf7-form p {
  margin: 0;
  padding: 0;
}

span .wpcf7-form-control{
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
}

.wpcf7-submit{
  background: #36B26E;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: none;
}

.wpcf7-submit:hover {
  background: #36B26E;
}

/* Centrado en pantallas medianas y pequeñas */
@media (max-width: 1024px) { /* Ajustamos el breakpoint a 1024px */
  .floating-form {
    margin: 0 auto!important; /* Centrado horizontal */
    width: 90%; /* Ancho más adaptable */
    padding: 40px; /* Padding reducido */
  }
}

/* Ajustes adicionales para móviles */
@media (max-width: 768px) {
  .floating-form {
    padding: 20px;
    width: 95%; /* Ocupa casi todo el ancho */
  }
}

/* Button Styles */
.btn {
  background: #36B26E
;
  color: #000;
  border: none;
  padding: 12px 30px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
  display: inline-block;
  text-decoration: none;
}

.btn:hover {
  background: #36B26E
;
}

/* Process Section */
.process {
  padding: 80px 5%;
  text-align: center;
}

.process h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.step {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 280px;
}

.step-number {
  background: #36B26E
;
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  font-size: 1.5rem;
}

/* Benefits Section */
.benefits {
  padding: 80px 5%;
  background: #f9f9f9;
  text-align: center;
}

.benefits h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.benefits-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.benefit {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 280px;
}

.benefit i {
  font-size: 2.5rem;
  color: #36B26E
;
  margin-bottom: 15px;
}

/* Lead Gen Form Section */
.lead-gen-section {
  padding: 80px 5%;
  background: #000;
  color: white;
  text-align: center;
}

.lead-gen-container {
  max-width: 600px;
  margin: 0 auto;
}

.lead-gen-form input,
.lead-gen-form select,
.lead-gen-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: none;
}

.lead-gen-form button {
  background: #36B26E
;
  color: #000;
  border: none;
  padding: 12px 30px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
}

/* FAQ Section */
.faq {
  padding: 80px 5%;
}

.faq h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
}

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

.accordion-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-question {
  width: 100%;
  padding: 15px 20px;
  background: #1A3C58
;
  color: white;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-question:hover {
  background: #333;
}

.accordion-question::after {
  content: "+";
  font-size: 1.5rem;
}

.accordion-question.active::after {
  content: "-";
}

.accordion-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #fff;
}

.accordion-answer p {
  padding: 20px 0;
}
/* Urgency Section */
.urgency {
  background: #1A3C58
;
  color: white;
  padding: 80px 5%;
  text-align: center;
  border-bottom: 5px solid #36B26E
;
}
.urgency h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.urgency p {
  font-size: 1.2rem;
  max-width: 90%;
  margin: 0 auto 30px;
}
/* Footer */
footer {
  background: #1A3C58
;
  color: #fff;
  text-align: center;
  padding: 30px 5%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
    height: auto;
  }

  .hero-content {
    width: 100%;
    margin-bottom: 30px;
  }

  .floating-form {
    margin: 0 auto;
    width: 90%;
  }
  .floating-form {
    background: #000;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    margin-left: 0px;

    padding-right: 40px;
  }
}


.features-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-item {
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 150px;
}

.feature-item p {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.feature-item i {
  font-size: 40px;
  color: #36B26E
;
  transition: transform 0.3s ease;
}

.feature-item:hover i {
  transform: scale(1.2);
}

.page-content {
  padding-top: 100px; /* o el alto real del header */
}

.terms-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  padding-top: 120px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}