.section_streamlined {
  height: 100vh;
  justify-content: center;
  align-items: center;
  background-image:url('../media/jpg/bg-callcenter02.jpg');
  /*background-color: var(--blue);      */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: luminosity;
}

h1 span {
  color: var(--primary-color);
}

.container_streamlined {
  padding: 3vw 6vw;
  display: grid;
  gap: 2vw;
  grid-template-columns: 60% 40%;
  justify-content: space-between;
  height: 100vh;
}

.logo {
  width: 8vw;
}

.hero-text {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--white);
}

p {
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--white);
  text-wrap: balance;
}

.buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
}
.primary_btn {
  width: fit-content;
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: background-color 0.3s;
}

.primary_btn:hover {
  background-color: var(--white);
  color: var(--secondary-color);
}

.primary_btn2 {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: background-color 0.3s;
}

.primary_btn2:hover {
  background-color: var(--white);
  color: var(--primary-color);
}


.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.hero-note {
  
  color: var(--white);
  flex-wrap: wrap;
  display: flex;
  align-content: end;
}


/*callcenter_section*/


.callcenter_section {
  background-color: var(--white);
  padding: 10vw;
}

.section_header {
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2vw;
  margin-bottom: 6vw;
}

 h2 {
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
}
h3{
	font-size: 1.2rem;
}

.benefit_title {
  font-weight: bold;
  color: var(--blue);
  margin-top: 1rem;
}

.section_description {
  color: var(--text-color);
  line-height: 1.5;
}

.swiper {
  padding: 2rem 0;
}

.benefit_card {
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 0.3s ease;
}

.benefit_card:hover {
  transform: translateY(-5px);
}

.icon-img img{
  border-radius: 50px 50px 0 0;
	margin: auto;
}

/* Flechas Swiper */
.swiper-button-prev,
.swiper-button-next {
  color: var(--white)!important;
  width: 40px;
  height: 40px;
  top: 45%;
  
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 2rem;
}

.whatwedo_section {
  background-color: var(--background-color);
  padding: 6vw;
}

.whatwedo_content {
	margin-top: 2vw;
  display: grid;
  gap: 2vw;
  grid-template-columns: 45% 55%;
  justify-content: space-between;
}

.text_box {
  flex: 1;
  color: var(--text-color);
}


.whatwedo_section p{
	color: var(--text-color);
}
.whatwedo_content .text_box{
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.benefits_list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits_list li {
  font-size: 1.2rem;
  position: relative;
  padding-left: 1.8em;
  color: var(--text-color);
}

.benefits_list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
}


/*features_section*/

.features_section {
  background-color: var(--white);
  padding: 6vw;
}

.container-features {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 2vw;
}

/* Tarjetas */
.features_right {
  background-color: var(--background-color);
  border-radius: 12px;
  padding: 1.5rem;
}

.card {
  background-color: var(--blue);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  text-align: center;
}
.card div{
background: radial-gradient(circle, #2d3e50, #2a3c4e, #2a3c4e);
	aspect-ratio: 1;
    padding: 2rem;
    border-radius: 50%;
}
.card div i{
	
    color: var(--secondary-color);
    font-size: 3rem;
}


/* Accordion */
  .faq_section{
    padding: 6vw;
  }
  .faq_container{
    display: grid;
    gap: 2vw;
    grid-template-columns: 30% 70%;
    
  }
   

    .accordion-item {
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .accordion input {
      display: none;
    }

    .accordion-label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      color: var(--text-color);
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s;
    }

    .accordion-label:hover {
      background: var(--primary-color);
      color: var(--white);
    }

    .accordion-label::after {
      content: '+';
      font-size: 2vw;
      line-height: 0;
      transition: transform 0.3s;
    }

    .accordion input:checked + .accordion-label::after {
      content: '×';
      
    }

    .accordion input[type="radio"]:checked + .accordion-label {
      background-color: var(--primary-color);
      color: var(--white);
  
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      background: white;
      padding: 0 0;
      transition: max-height 0.5s ease, padding 0.3s ease;
    }

    .accordion input:checked ~ .accordion-content {
      max-height: 200px; 
      padding: 15px;
    }


/* Form */
input::placeholder, textarea::placeholder {
  	opacity: 0.7;
	color: var(--white);
}
input, textarea{
	color: var(--white);
}
.form_section {
  background-image: url('../media/jpg/bg-callcenter-form.jpg');
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
  padding: 6vw;
  text-align: center;
}
.form_section h2{
	color: var(--primary-color);
}
.form_box {
  max-width: 800px;
  margin: 2rem auto;
}

.inputs_box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input_group {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.input_group input {
  padding: 0.75rem;
  border: none;
  border-bottom: 1px solid #ffffff;
  background: transparent;
  outline: none;
  font-size: 1rem;
  width: 100%;
}

.input_group2 textarea {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-bottom: 1px solid #ffffff;
  background: transparent;
  resize: vertical;
  font-size: 1rem;
  height: 120px;
}


.loader {
  display: none;
  margin-top: 1rem;
}

.bar_loader {
  width: 40px;
  height: 4px;
  background-color: var(--primary-color);
  animation: loading 1s infinite;
}

@keyframes loading {
  0% { transform: translateX(0); }
  50% { transform: translateX(20px); }
  100% { transform: translateX(0); }
}

/* Footer */
.footer { 
  padding: 6vw 6vw 2vw 6vw;
  background-color: var(--background-color);
}

.footer_container {
  display: flex;
  justify-content: space-between;
}





.footer_social a {
  margin-right: 2rem;
  font-size: 2rem;
  color: var(--secondary-color);
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}
.footer_social a:hover {
  color: var(--primary-color);
  transform: scale(1.2);
}

.footer_btn {
  background-color: var(--white);
  color: var(--text-color);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s;
}

.footer_btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.footer hr {
  margin: 2rem 0 1rem;
  border: 0;
  height: 1px;
  background: var(--primary-color);
}

.footer_copy {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-color);
}
.features_left{
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.features_left p{
	color: var(--text-color);
}
.grid-features {
	height: 100%;
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, 1fr);
}
.accordion-content p{
	color: var(--text-color);
	
}
.whatwedo_content img, .features_left img{
	border-radius: 12px;
	box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}
.footer_copy p{
  color: var(--text-color);
}
.footer_info {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--text-color);
}
.footer_info a:hover{
  color: var(--primary-color);
}
.footer_info p {
  color: var(--text-color);
}
.card_info{
  display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    /*gap: 2rem;*/
}
.txt-info{
  position: absolute;
  bottom: 0;
  background-color: var(--secondary-color);
  padding: 1.5vw;
  width: 100%;
  border-radius: 50px 50px 0 0;
  font-weight: 600;
}
.callcenter_section div img{
  transition: height 0.5s ease-in-out;
     height: 300px;
     object-fit: cover;
}
.swiper-slide-active div img{
  height: 330px;
  
 
}


.whatwedo_content h3{
  color: var(--secondary-color);
}
.container-features svg{
  width: 3vw;
}
.grid-features p{
  color: #76d7c4;
}
.container-prev-next{
  display: grid;
  grid-template-columns: 5% 100% 5%;
}
.custom-prev,
.custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 26px;
  color: #ffffff;
  background: #a5bd39;
  padding: 6px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
}
.custom-prev:hover,
.custom-next:hover {
  color: #a5bd39;
  background: #ffffff;
}
.custom-prev { left: 10px; }
.custom-next { right: 10px; }
.swiper-wrapper {
  align-items: flex-end;
}
.logo-footer {
  width: 18vw;
  fill: #76d7c4;
  stroke: #a5bd39;
}
.features_left a{
  width: fit-content;
}
.footer_copy a:hover {
  color: var(--primary-color);
}


.grid-features .card {
  transition: background-color 0.3s ease; /* transición para el fondo */
}

.grid-features .card svg path {
  transition: stroke 0.3s ease, fill 0.3s ease; 
}
/*
.grid-features .card:hover {
  background-color: #32495eeb;
}*/

.grid-features .card:hover svg path {
  fill: #ffffff;
}
@media (max-width: 996px) {
  .logo-footer {
    width: 40vw;
  }
  .accordion-label::after {
    font-size: 8vw;
  }
  .swiper-slide-active div img{
    height: 300px;   
  }
  .txt-info {
    padding: 6vw;
  }
  .container-features svg{
    width: 8vw;
  }
  .section_description {
    padding-bottom: 6vw;
  }
  .accordion-item label{
    font-size: 1.2rem;
  }
  .benefit_card {
    min-height: 0;
  }
  .callcenter_section {
    padding: 12vw 6vw;
}
.whatwedo_section {
  padding: 12vw 6vw;
}
.features_section {
  padding: 12vw 6vw;
}
.form_section {
  padding: 12vw 6vw;
}
.faq_section {
    padding: 12vw 6vw;
}
	.grid-features {
    grid-template-columns: repeat(2, 1fr);
	}

	.container-features {
		grid-template-columns: 100%;
    gap: 6vw;
	}
	.container_streamlined {
		padding: 6vw;
		display: grid;
		gap: 3rem;
		grid-template-columns: 100%;
    height: 80vh;
	}
	.logo {
		width: 50vw;
		margin: 0;
	}
	.hero-text {
		max-width: 100%;
	}
	.whatwedo_content {
		grid-template-columns: 100%;
	}
	.section_header {
		display: grid;
		grid-template-columns: 100%;
	}
	/*.container-features {
		flex-direction: row;
		align-items: flex-start;
	}*/
	.features_left,
	.features_right {
		flex: 1;
	}
	
	
	.input_group {
		flex-direction: column;
		gap: 1rem;
	}
	.input_group input {
		width: 100%;
	}
	.footer_container {
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
    text-align: center;
    gap: 2rem;
	}
	.footer_info {
		max-width: 600px;
	}
	.footer_cta {
		flex-shrink: 0;
	}
	.faq_container {
		grid-template-columns: 100%;
	}
  h2{
    text-wrap: balance;
  }
}
