/* General Styles */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Text:ital@0;1&display=swap');

@font-face {
    font-family: proximaNova;
    src: url(../fonts/Fontspring-DEMO-proximanova-regular.otf);
}

@font-face {
    font-family: grabsteinSans;
    src: url(../fonts/Grabstein\ Sans.otf);
}

:root {
    --bg-white: #fff;
    --bg-dark: #151515;
    --semi-dark: #2a2a2a;
    --text-color: #1f2421;
    --main-color: #19181a;
    --primary-color: #1966b0;
    --secondary-color: #fcc729;
    --secondary-color: #724aea;
    --white-color: #fff;
    --font-h: grabsteinSans, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    --font-p: proximaNova, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;

}

html {
    font-size: 10px;
  }
  
  @media only screen and (max-width:400px) {
    html {
      font-size: 9.411764705882353px;
    }
  
  }

  .primary-color {
    color: var(--primary-color);
  }

  .secondary-color {
    color: var(--secondary-color);
  }

body {
     background: #fff;
     font-family: var(--font-p);
     letter-spacing: 0.2rem;
    font-size: 1.9rem;
    font-style: normal;
    font-weight: normal;
    line-height: 1.941;
    color: rgba(0, 0, 0, 0.9);
    margin: 0;
    padding: 0;
}

section {
    padding: 100px 0px;
}

p {
    font-family: var(--font-p);
}    

.bold {
    font-weight: bold;
}

.button-abo {
    all: unset;
  
    height: 30px;
    font-size: 16px;
    background: transparent;
    color: #ffffff !important;
      border: none !important;
      background: #1966b0 !important;
      font-family: var(--font-p);
  
    position: relative;
    color: #f0f0f0;
    cursor: pointer;
    z-index: 1;
    padding: 15px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .button-abo::after,
  .button-abo::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -99999;
    transition: all .4s;
  }
  
  .button-abo::before {
    transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
    background: #1966b0;
    border-radius: 3px;
  }
  
  .button-abo::after {
    transform: translate(10px, 10px);
  
    height: 35px;
    background: #ffffff15;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 3px;
  }
  
  .button-abo:hover::before {
    transform: translate(5%, 20%);
    width: 110%;
    height: 110%;
  }
  
  .button-abo:hover::after {
    border-radius: 10px;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
  }
  
  .button-abo:active::after {
    transition: 0s;
    transform: translate(0, 5%);
  }
  
  .btn {
      
      text-align: center;
  
      letter-spacing: 1px;
      text-decoration: none;
  
      z-index: 1;
  
      animation: slideTop 1s ease forwards;
      animation-delay: 2s;
  }
  
  .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      inset: 0;
  
      filter: blur(5px);
      transition: .5s ease;
  }
  
  .btn:hover::before {
      background-position: 100% 0;
      box-shadow: none;
  }
  
  
  
  .btn:hover::after {
      background-position: 100% 0;
      box-shadow: none;
  }
  
  .btn:hover {
      box-shadow: none;
  }
  
  
  
  a {
      color: var(--primary-color);
      text-decoration: none;
      font-weight: bold !important;
  }
   a:hover, a:focus, a:active {
    color: #999;
    text-decoration: none;
    font-weight: bold !important;
}

.fuente {
    font-family: Arial, Helvetica, sans-serif !important;
  }


.floating {
	animation-iteration-count:infinite;
	animation-duration: 1.3s;
	animation-name: floating-float, floating;
	}
	@keyframes floating {
	 0% {
	   -webkit-transform: translateY(-8px);
	   transform: translateY(-8px);
	 }
	 50% {
	   -webkit-transform: translateY(-4px);
	   transform: translateY(-4px);
	 }
	 100% {
	   -webkit-transform: translateY(-8px);
	   transform: translateY(-8px);
	 }
	}
	@keyframes floating-float {
	 100% {
	   -webkit-transform: translateY(-8px);
	   transform: translateY(-8px);
	 }
}

header {
    background-color: #fff; /* Color de fondo de la barra superior */
    width: 100%;
    position: fixed; /* Barra fija en la parte superior */
    z-index: 100; /* Asegura que esté por encima de otros elementos */
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    height: 70px;
    padding: 0 20px;
}

.top-bar span {
    font-weight: bold;
    color: #1966b0;
}

@media (max-width: 768px) {
    .top-bar {
        padding: 0;
        height: 70px;
    }
    .top-bar .logo {
        max-width: 120px;
        margin-right: 0px;
    }
    .top-bar p {
        font-size: 1em;
        line-height: .9;
        letter-spacing: normal;
    }
    .top-bar .btn {
        display: none;
    }
   
}

.logo {
    max-height: 70px; /* Ajusta el tamaño del logo */
    margin-right: 20px;
}

.top-bar p {
    font-size: 1em; /* Tamaño de la frase */
    text-align: center;
}

.top-bar a {
    color: green;
    font-size: 4rem;
}

.shadow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .1;
    background: linear-gradient(to bottom, rgba(76, 173, 211, 0.4) 0%, rgba(23, 146, 177, 0) 100%);
}

.hero {
    position: relative;
    background-color: #1966b0;
    background-image: url("../images/back2.png");
    background-size: cover;
    background-position: center;
    height: 100vh; /* Ajusta la altura según necesidad */
    display: flex;
    align-items: center; /* Centra verticalmente */
    justify-content: center;
    color: white; /* Color del texto en la sección Hero */
    text-shadow: 1px 1px 2px #fff; /* Sombra para mejor legibilidad */
    padding-top: 90px; /* Espacio para que no se superponga con la barra superior */
}



.hero-content {
    display: flex;
    width: 90%; /* Ancho del contenido */
    max-width: 1200px; /* Ancho máximo para pantallas grandes */
    margin: 50px auto 0px;
    align-items: center;
    justify-content: space-between;
}

h1 {
    font-size: 7rem;
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--font-h);
    margin-top: 0;
    letter-spacing: 5px;

    margin-top: 100px;
    width: 100%;
    transition:all .4s ease;
  
    color: rgb(255, 255, 255);
    text-shadow: 0 1px 0 #ccc,
                 0 2px 0 #c9c9c9,
                 0 3px 0 #bbb,
                 0 4px 0 #b9b9b9,
                 0 5px 0 #aaa,
                 0 6px 1px rgba(0,0,0,.1),
                 0 0 5px rgba(0,0,0,.1),
                 0 1px 3px rgba(0,0,0,.3),
                 0 3px 5px rgba(0,0,0,.2),
                 0 5px 10px rgba(0,0,0,.25),
                 0 10px 10px rgba(0,0,0,.2),
                 0 20px 20px rgba(0,0,0,.15);
  }



.hero-text {
    width: 80%;
    padding-right: 20px;
}

.hero-text p {
    font-size: 2rem;
    background-color: rgba(255, 255, 255, 0.99);
    padding: 5px 10px;
    text-align: center;
    color: #1966b0;
}

.hero-image {
    width: 40%;
}

.hero-image img {
    max-width: 100%;
    height: auto;

}

/* Media Queries para Responsive Design */
@media (max-width: 1025px) {
    .hero {
        height: 1200px;
        padding-top: 170px;
    }
    .hero-content {
        flex-direction: column; /* Apila los elementos en pantallas pequeñas */
        text-align: center;
    }
    .hero-text, .hero-image {
        width: 90%;
        margin-bottom: 20px;
    }
}


/* style.css */
.subscription {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

.subscription-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.subscription-image {
    width: 40%;
}

.subscription-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.subscription-form {
    width: 50%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.subscription-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.subscription-form label {
    display: block;
    margin-bottom: 10px;
}

.subscription-form input[type="text"],
.subscription-form input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.subscription-form input[type="submit"] {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.subscription-form input[type="submit"]:hover {
    background-color: #0069d9;
}

@media (max-width: 768px) {
    .subscription-content {
        flex-direction: column;
    }
    .subscription-image, .subscription-form {
        width: 100%;
    }
}


.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
}



.section-title {
    font-family: var(--font-h);
    
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.333;
    text-transform: uppercase;
    letter-spacing: 1.3rem;
    color: #1966b0;
    margin-top: 0;
    margin-bottom: 3.6rem;
    position: relative;
  }
  
  .section-title::before {
    content: attr(data-num) ".";
    padding-right: 72px;
    font-weight: 700;
  }
  
  .section-title::after {
    content: "";
    display: block;
    background-color: #1966b0;
    height: 1px;
    margin-top: -1px;
    width: 4.5rem;
    position: absolute;
    top: 50%;
    left: 4rem;
  }

  .text-center {
    text-align: center;
  }

  .subhead {
    font-family: var(--font-p);
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.333;
    text-transform: uppercase;
    letter-spacing: .25rem;
    color: #1966b0;
    margin-top: 0;
    margin-bottom: 3.6rem;
  
   
  }
  
  .subhead::before {
    content: attr(data-num) ".";
    padding-right: 72px;
    font-weight: 700;
  }

  @media only screen and (max-width:600px)  {
    .subhead::before {
        padding-right: 20px;
    }
  }
  
  .subhead::after {
    content: "";
    display: block;
    background-color: #1966b0;
    height: 1px;
    margin-top: -1px;
    width: 4.5rem;
    position: absolute;
    top: 50%;
    left: 4rem;
  }
  p.lead {
    font-family: var(--font-p);
    font-weight: 300;
    font-size: 2rem;
    line-height: 1.875;
    margin-bottom: 3.6rem;
    color: rgba(0, 0, 0, 0.85);
  }
  
  @media only screen and (max-width:1200px) {
    p.lead {
      font-size: 2rem;
    }
  
  }
  
  @media only screen and (max-width:1000px) {
    p.lead {
      font-size: 2rem;
    }
  
  }
  
  @media only screen and (max-width:800px) {
    p.lead {
      font-size: 2rem;
    }
  
  }

@media only screen and (max-width: 1300px) {
     .display-1,  p.lead {
        padding-left: 0;
        padding-right: 3rem;
    }
}

 .display-1,  p.lead {
    /* padding-left: 9.6rem; */
    padding-right: 2rem;
    margin-bottom: 4rem
}
@media only screen and (max-width: 400px) {
    .display-1 {
        font-size: 2.8rem;
    }
}
@media only screen and (max-width: 500px) {
    .display-1 {
        font-size: 3rem;
    }
}
@media only screen and (max-width: 600px) {
    .display-1 {
        font-size: 3.5rem;
    }
}
@media only screen and (max-width: 700px) {
    .display-1 {
        font-size: 3.6rem;
        margin-bottom: 3.6rem;
    }
}
@media only screen and (max-width: 800px) {
    .display-1 {
        font-size: 3.8rem;
    }
}
@media only screen and (max-width: 900px) {
    .display-1 {
        font-size: 4rem;
    }
}
@media only screen and (max-width: 1200px) {
    .display-1 {
        font-size: 4.2rem;
    }
}
@media only screen and (max-width: 1300px) {
    .display-1 {
        font-size: 4.5rem;
    }
}
.display-1 {
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 4.6rem;
    line-height: 1.5;
    letter-spacing: .3rem;
    margin-top: 0;
    margin-bottom: 4.8rem;
}


/* Services Section */
#services {
    padding-top: 10rem;
    padding-bottom: 10rem;
    background-color: #151515;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../images/services-bg.jpg);
    background-size: cover;
    position: relative;
    color: rgba(255, 255, 255, 1);
}

#services::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#services .main-heading .display-1 {
    color: var(--white-color) !important;
   
}

#services .main-heading p.lead {

    line-height: 1.5;
    color: var(--white-color);
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service {
    /* background-color: rgba(42, 42, 42, 0.3); */
    border-radius: 8px;
    margin: 10px;
    padding: 20px;
    width: 30%;
    box-sizing: border-box;
}



.service h2 {
    color: #1966b0;
    font-family: var(--font-p);
    font-weight: 600;
    font-size: 2em;
    margin: 0;
}

.service h3 {
    font-size: 2.5rem;
    font-family: var(--font-h);
    font-weight: 600;
    line-height: 1.5;
    margin: 10px 0;
    color: #fff !important;
    text-shadow: 2px 2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, -2px -2px 0 #000, 2px 0px 0 #000, 0px 2px 0 #000, -2px 0px 0 #000, 0px -2px 0 #000;
    z-index: 1000;

}

.service p {
    font-family: var(--font-p);
    font-size: 1.9rem;
    line-height: 1.9;
    text-shadow: 2px 2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, -2px -2px 0 #000, 2px 0px 0 #000, 0px 2px 0 #000, -2px 0px 0 #000, 0px -2px 0 #000;
    color: #ccc
}

/* Benefits Section */
#benefits {
    background-color: var(--bg-white);
    padding: 100px 0;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.benefit {
    background-color: #fff;
    border-radius: 8px;
    margin: 10px;
    padding: 20px;
    width: 45%;
    box-sizing: border-box;
}

.benefit h2 {

    font-family: var(--font-h);
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 10px;
    margin-top: 0;
}


.benefit p {
    font-family: var(--font-p);
    line-height: 1.8;
    letter-spacing: 1.3;
}

@media only screen and (max-width: 500px) {
    .benefit h2 {
        font-size: 2.1rem;
        
    }
    h1 {
        font-size: 4.5rem;
        margin-top: 0px;
    }

    .button-abo {
        padding: 10px 15px;
        font-size: 12px;
    }
    .hero-text, .hero-image {
        width: 100%;
    }

    section {
        padding: 50px 0px;
    }
    #benefits {
        padding: 50px 0;
    }
    .hero {
        background-position-x: right 3px;
    }

}


/* Responsive Styles */
@media (max-width: 1200px) {
    .services-list, .benefits-list {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .service, .benefit {
        width: 100%;
        margin: 10px 0;
    }
}

#works, #about {
    background-color: var(--bg-white);
    padding: 100px 0;
}

.grid-list {
    display: grid;
    gap: 30px;
}
@media (min-width: 575px) {
    .grid-list, .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .grid-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1200px) {
    .grid-list {
        grid-template-columns: repeat(3, 1fr);
    }
}



.card {
    background-color: #f1f1f1;
    padding: 24px;
    border-radius: 8px;
    box-shadow:  0 2px 2px #000;
    transition: 0.25s ease;
  }
  
  .card-banner {
    overflow: hidden;
    border-radius: 6px;
    background-color:  hsl(249, 9%, 15%);
  }
  
  .card-banner img {
      transition: transform 300ms ease 0ms;
  }
  
  .img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .card-title { 
    color: #323946;
    transition:  0.25s ease;
  margin-top: 12px; }
  
  
  /*-----------------------------------*\
    #COLLECTION
  \*-----------------------------------*/
  
  .collection-card { text-align: center; }
  
  .collection-card .card-banner { aspect-ratio: 1 / 0.75; }
  
  .collection-card .card-avatar {
    position: relative;
    width: max-content;
    margin-inline: auto;
    margin-block: -40px 15px;
    border-radius: 50px;
    overflow: hidden;
    border: 3px solid  hsla(217, 15%, 70%, 0.3);
    padding: 5px;
    transition: 0.25s ease;
  }
  
  .collection-card .card-avatar img { border-radius: inherit; }
  
  .collection-card:is(:hover, :focus) .card-avatar { box-shadow: 0 5px 10px hsla(223, 82%, 30%, 0.5); }
  
  .collection-card:is(:hover, :focus) .card-title { color:  #1966b0; }
  
  
  #testimonials {
    padding-top: 10rem;
    padding-bottom: 10rem;
    background-color: #323946;
    color: rgba(255, 255, 255, 1);
}

#testimonials h2 {

    font-family: var(--font-h);
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 20px;
    margin-top: 0;
}


#testimonials p {
    font-family: var(--font-p);
    line-height: 1.3;
    letter-spacing: 1.3;
}

@media only screen and (max-width: 500px) {
    #testimonials h2 {
        font-size: 2.1rem;
        margin-left: 6.5rem;
    }
}

.testimonios {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.row {
    width: 89%;
    max-width: 1200px;
    margin: 0 auto;
}

@media only screen and (max-width: 800px) {
    .row {
        width: 90%;
    }
}

@media only screen and (max-width: 600px) {
    .row {
        width: auto;
        padding-left: 25px;
        padding-right: 25px;
    }}

    .carousel-container {
        width: 90%;
        max-width: 800px;
        overflow: hidden;
        position: relative;
        background: white;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .carousel-item {
        min-width: 100%;
        padding: 20px;
        box-sizing: border-box;
        text-align: center;
    }

    .carousel-item p {
        font-size: 1.8rem;
       
        color: #555;
        font-family: var(--font-p);
        line-height: 1.2;
    }

    .carousel-item h3 {
        font-size: 1.9rem;
        color: #333;
        margin: 10px 0 0;
        font-family: var(--font-h);
    }

    .carousel-item img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-bottom: 15px;
        border: 2px solid var(--primary-color);
    }

    /* Botones de navegación */
    .carousel-buttons {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
    }

    .carousel-buttons button {
        background: #f5f7f9;
        border: none;
        color: var(--primary-color);
        padding: 10px;
        border-radius: 5%;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transition: background 0.3s ease;
    }

    .carousel-buttons button:hover {
        background: var(--primary-color);
        color: #fff;
    }

    .carousel-indicators {
        text-align: center;
        padding: 10px;
        background: #f9f9f9;
    }

    .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 5px;
        background: #ccc;
        border: none;
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .carousel-indicators button.active {
        background: var(--primary-color);
    }

    .d-flex {
        display: flex !important;
    }
    
    .text-center {
        text-align: center !important;
    }
    .align-items-center {
        align-items: center !important;
    }
    .justify-content-center {
        justify-content: center !important;
    }
    .flex-column {
        flex-direction: column !important;
    }

    .footer {
        background-color: #333;
        color: white;
        padding: 40px 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
        min-width: 250px;
        margin: 10px;
    }

    /* Estilo de las columnas */
    .footer-column h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        font-family: var(--font-h);
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
    }

    .footer-column ul li {
        margin: 5px 0;
    }

    .footer-column ul li a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-column ul li a:hover {
        color: var(--primary-color);
    }

    /* Formulario de suscripción */
    .footer-form input[type="email"],  .footer-form input[type="text"]  {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
    }

    .footer-form button {
        width: 100%;
        padding: 10px;
        background-color: var(--primary-color);
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.3s;
    }

    .footer-form button:hover {
        background-color: #3b9ebb;
    }

    /* Responsividad */
    @media (max-width: 768px) {
        .footer {
            flex-direction: column;
            align-items: center;
        }

        .footer-column {
            max-width: 90%;
            text-align: center;
        }
    }

    @media (max-width: 500px) {
        .home-social {

            left: 10px;

          }
    }
    @media (min-width: 501px) {
        .home-social {

            right: 15px;

          }
    }

    .home-social {
        list-style: none;
        font-family: var(--font-h);
        margin: 0;
        position: absolute;
        top: 6rem;

        z-index: 500;
      }
      
      .home-social a {
        color: #FFFFFF;
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
      }
      
      .home-social li {
        position: relative;
        padding: .6rem 0;
      }
      
      .home-social li a {
        display: block;
        width: 36px;
        height: 36px;
        line-height: 36px;
      }
      
      .home-social i,
      .home-social span {
        position: absolute;
        top: 0;
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
      }
      
      .home-social i {
        display: inline-block;
        font-size: 20px;
        text-align: center;
        width: 36px;
        height: 36px;
        line-height: 36px;
        right: 0;
      }
      
      .home-social span {
        background-color: #151515;
        font-size: 1.2rem;
        line-height: 30px;
        color: #1966b0;
        right: 50px;
        padding: 0 15px;
        margin: 3px 0;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: 100% 50%;
        -ms-transform-origin: 100% 50%;
        transform-origin: 100% 50%;
      }
      
      .home-social span::after {
        display: block;
        content: "";
        width: 0;
        height: 0;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 6px solid #151515;
        position: absolute;
        top: 50%;
        right: -6px;
        margin-top: -6px;
      }
      
      .home-social li:hover span {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
      }

      

 .wpbtn-pop {
    bottom: 30px;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    position: fixed;
    right: 30px;
    z-index: 999999999;
  }
  
  .wpbtn-pop .wpbtn-icon:after, .wpbtn-pop .wpbtn-icon:before {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    width: 100%;
  }
  .wpbtn-pop .wpbtn-icon:before {
    background: transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NzguMTY1IDQ3OC4xNjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3OC4xNjUgNDc4LjE2NSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMiIgaGVpZ2h0PSI1MTIiPjxwYXRoIGQ9Ik00NzguMTY1IDIzMi45NDZjMCAxMjguNTY3LTEwNS4wNTcgMjMyLjk2Ni0yMzQuNjc5IDIzMi45NjYtNDEuMTAyIDAtNzkuODE0LTEwLjU5OS0xMTMuNDQ1LTI4Ljk2OUwwIDQ3OC4xNjVsNDIuNDM3LTEyNS4wNGMtMjEuNDM4LTM1LjA2NS0zMy43Ny03Ni4yMDctMzMuNzctMTIwLjE1OUM4LjY2NyAxMDQuMzQgMTEzLjc2MyAwIDI0My40ODUgMGMxMjkuNjIzIDAgMjM0LjY4IDEwNC4zNCAyMzQuNjggMjMyLjk0NnpNMjQzLjQ4NSAzNy4wOThjLTEwOC44MDIgMC0xOTcuNDIyIDg3LjgwMy0xOTcuNDIyIDE5NS44NjggMCA0Mi45MTUgMTMuOTg2IDgyLjYwMyAzNy41NzYgMTE0Ljg3OWwtMjQuNTg2IDcyLjU0MiA3NS44NDktMjMuOTY4YzMxLjEyMSAyMC40ODEgNjguNDU3IDMyLjI5NiAxMDguNTgzIDMyLjI5NiAxMDguNzIzIDAgMTk3LjMyMy04Ny44NDMgMTk3LjMyMy0xOTUuOTA4IDAtMTA3Ljg4Ni04OC42LTE5NS43MDktMTk3LjMyMy0xOTUuNzA5ek0zNjEuOTMxIDI4Ni42MmMtMS4zOTUtMi4zMzEtNS4yMi0zLjc0Ni0xMC44OTgtNi44MTQtNS45MTctMi44NDktMzQuMDg5LTE2LjQ5Ny0zOS41MDgtMTguMzctNS4xNi0xLjkxMy04Ljk4Ni0yLjg0OS0xMi44MTEgMi44MjktNC4wMDUgNS42MzgtMTQuOTAzIDE4LjYyOS0xOC4yMyAyMi4zNTQtMy41NDYgMy43ODUtNi44NTQgNC4yNjQtMTIuNTUyIDEuNDM1LTUuNjE4LTIuODA5LTI0LjI2Ny04Ljg2Ni00Ni4yMDMtMjguMzkxLTE3LjA1NS0xNS4wNDItMjguNjctMzMuNzExLTMxLjk5Ny0zOS41MDgtMy40MjctNS43NTgtLjM5OC04LjgyNiAyLjQ3MS0xMS42MzUgMi42OS0yLjU5IDUuNzc4LTYuNzM0IDguNjI3LTEwLjA0MSAyLjk2OS0zLjI4NyAzLjkwNS01LjYzOCA1Ljc5OC05LjQyNCAxLjkxMy0zLjkwNS45MzYtNy4xOTItLjQ3OC0xMC4xNDEtMS40MTUtMi44NDktMTMuMDEtMzAuODgxLTE3Ljc1Mi00Mi4zMzctNC44NDEtMTEuNDE2LTkuNTQzLTkuNTIzLTEyLjg3MS05LjUyMy0zLjQ2NyAwLTcuMjEyLS40NzgtMTEuMTE3LS40NzgtMy43ODUgMC0xMC4wNDEgMS4zOTUtMTUuMzgxIDcuMTkyLTUuMiA1LjY1OC0yMC4xMjMgMTkuNDY1LTIwLjEyMyA0Ny41OTcgMCAyOC4wNTIgMjAuNjAxIDU1LjMwOCAyMy41NSA1OS4wNTMgMi44NjkgMy43ODUgMzkuNzQ3IDYzLjE5NyA5OC4zMDMgODYuMDcgNTguNDc2IDIyLjg3MiA1OC40NzYgMTUuMzIxIDY5LjExNSAxNC4zNjUgMTAuMzgtLjk1NiAzNC4wNjktMTMuODY3IDM4LjgxMS0yNy4wOTYgNC42Ni0xMy40NSA0LjY2LTI0Ljc2NiAzLjI0Ni0yNy4xMzd6IiBmaWxsPSIjRkZGIi8+PC9zdmc+) 50% no-repeat;
    background-size: 30px auto;
    -webkit-background-size: 30px auto;
    -moz-background-size: 30px auto;
    z-index: 1;
  }
  .wpbtn-pop, .wpbtn-pop *, .wpbtn-pop :after, .wpbtn-pop :before, .wpbutton, .wpbutton *, .wpbutton :after, .wpbutton :before, .wpp-chatbox, .wpp-chatbox *, .wpp-chatbox :after, .wpp-chatbox :before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  
  .wpbtn-pop {
    bottom: 30px;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    position: fixed;
    right: 30px;
    z-index: 999999999;
  }
  .wpbtn-pop .wpbtn-icon {
    background: #2db742;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .14);
    -webkit-box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .14);
    -moz-box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .14);
    height: 56px;
    width: 56px;
  }
  .wpbtn-pop, .wpbtn-pop *, .wpbtn-pop :after, .wpbtn-pop :before, .wpbutton, .wpbutton *, .wpbutton :after, .wpbutton :before, .wpp-chatbox, .wpp-chatbox *, .wpp-chatbox :after, .wpp-chatbox :before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  .wpbtn-pop .wpbtn-popup-txt {
    background-color: #f5f7f9;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    color: #43474e;
    font-size: 12px;
    letter-spacing: -.03em;
    line-height: 1.5;
    margin-right: 7px;
    padding: 8px 12px;
    position: absolute;
    right: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    width: 156px;
  }
  .wpbtn-pop, .wpbtn-pop *, .wpbtn-pop :after, .wpbtn-pop :before, .wpbutton, .wpbutton *, .wpbutton :after, .wpbutton :before, .wpp-chatbox, .wpp-chatbox *, .wpp-chatbox :after, .wpp-chatbox :before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  }

#faqs {
    background-color: #fff;
    opacity: 0.8;
    padding: 100px 0;
    min-height: 100vh;
  
}

.faqs {
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;

}

.faq-container {
    width: 90%;
    /* max-width: 800px; */
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.faq-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.4rem;
    color: #333;
    font-family: var(--font-h);
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-family: var(--font-p);
    letter-spacing: .4rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    font-family: var(--font-p);
    font-size: 1.8rem;
    color: #555;
    margin-top: 10px;
    line-height: 1.5;
    display: none;
}

.faq-answer ul {
    margin-left: 30px;
}

.faq-item.open .faq-answer {
    display: block;
}

/* Responsividad */
@media (max-width: 768px) {
    .faq-title {
        font-size: 1.5rem;
    }

}

.banner {
	position: relative;
	z-index: 1;
	margin: 30px auto;
	width: 330px;
   
}

.banner .line {
	margin: 0px 0 10px;
	width: 100%;
	height: 80px;
   
	box-shadow: 10px 10px 10px rgba(0,0,0,0.05);
	text-align: center;
	text-transform: uppercase;
	font-size: 1.1em;
	line-height: 1.2;
	transform: skew(0, -10deg);
}

.banner .line:after,
.banner .line:first-child:before {
	position: absolute;
	top: 10px;
	left: 0;
	z-index: -1;
	display: block;
	width: 330px;
	border-radius: 4px;
	background: rgba(180,180,180,0.8);
	content: '';
	transform: skew(0, 10deg);
    padding: 10px auto;
}

.banner .line:first-child:before {
	top: -10px;
	right: 0;
	left: auto;
 
}

.banner .line:first-child:before,
.banner .line:last-child:after {
	width: 0;
	height: 0;
	border-width: 38px;
	border-style: solid;
	border-color: rgba(180,180,180,0.8) rgba(180,180,180,0.8) transparent transparent;
	background: transparent;
   
}

.banner .line:last-child:after {
	top: 12px;
	border-color: transparent transparent rgba(180,180,180,0.8) rgba(180,180,180,0.8);
}

.banner span {
	display: block;
	width: 100%;
	height: 100%;
    padding-top: 13px;
	border-radius: 4px;
	background: rgba(255,255,255,0.9);
	color: #1966b0;
	text-shadow: 1px 1px 0 #444;
}