:root {
    --primary-color: #1A93CF; /* Fondo */
    --button-color: #1A93CF; /* Botón */
    --text-color: #e1e8ed; /* Color de texto */
    --background-color: rgba(0, 0, 0, 0); /* Fondo transparente */
    --font-family: 'Outfit', sans-serif; /* Fuente */
    --font-size: 64px; /* Tamaño de fuente */
    --line-height: 72px; /* Altura de línea mayor para elegancia */
    --font-weight: 700; /* Peso de fuente */
    --padding: 0px; /* Padding para dar más espacio alrededor */
    --margin: 0px; /* Márgenes más grandes para un espaciado elegante */
    --highlight-bg: linear-gradient(135deg, #193750, #193750);
    --circle-size: 250px;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Header */
.header {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    padding: 10px 0; /* Espaciado aumentado */
}

.header-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px; /* Logo ligeramente más grande */
}

.info-button-container {
    display: flex;
    align-items: center;
}

.info-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--button-color);
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 1rem; /* Tamaño de texto un poco mayor */
}

.tel{
	color: #1A93CF;
}

.info-button:hover {
    background-color: #1A93CF;
}

@media (max-width: 768px) {
  .info-button {
    font-size: 12px;
    padding: 12px 20px;
  }
  .info-button .arrow-icon {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .info-button {
    font-size: 0.9em;
    padding: 10px 15px;
  }
  .info-button .arrow-icon {
    width: 10px;
    height: 10px;
  }
}

.arrow-icon {
    width: 18px;
    margin-left: 8px;
    fill: #000;
}

/* Divider */
.header-divider {
    height: 2px;
    width: 90%;
    max-width: 1200px;
    background-color: white;
    margin: 20px 0; /* Mayor separación */
}

/* Hero title */
.hero-title {
    text-align: center;
    padding: var(--padding);
    margin: var(--margin) 0;
}

.hero-title h1 {
    color: var(--text-color);
    background-color: var(--background-color);
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-weight: var(--font-weight);
    line-height: var(--line-height);
    letter-spacing: normal;
    word-spacing: 0px;
    text-transform: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

/* Contenedor principal con imagen de fondo */
.container {
    position: relative;
    background: url('img/vallas-publicitarias_principal.jpg') no-repeat center center / cover;
    width: 100%;
    height: 52vh;
    display: flex;
    align-items: center; /* Centra verticalmente */
    justify-content: flex-start; /* Ajusta horizontalmente */
    /*padding-top: 1%;*/
	/*padding-bottom:40%;*/
    color: none;
    text-align: center;
    overflow: hidden;
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
  .container {
      height: 20vh; /* Reduce la altura en pantallas pequeñas */
      background-position: center top; /* Ajusta la posición de la imagen */
  }
}

  
  /* Texto centrado */
  .container p {
    font-family: 'Outfit', sans-serif;
    font-size: 50px;
    font-weight: bold;
    /*text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);*/
    color: #193750;
    z-index: 1;
    line-height: 1.5; /* Controla el espaciado entre líneas */
    max-width: 360px; /* Restringe el ancho para forzar saltos de línea */
    text-align: left;
}

.highlight-box {
    text-align: center;
    padding: 8px;
    margin: 40px auto;
    width: 80%;
    border-radius: 8px;
}

.highlight-box p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.highlight-box .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1A93CF;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.highlight-box .button:hover {
    background-color: #f5c100;
}

/* Contenedor principal */
.image-text-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;
    padding: 20px;
    background-color: lightgray;
  }
  
  /* Imagen circular */

  
  .round-image {
    width: 100%;  /* Tamaño mayor */

  }
  
  /* Contenedor de texto */
  .text-container {
    flex-grow: 1;
    max-width: 600px;
    text-align: left;
  }
  
  /* Títulos */
  .text-container h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  /* Párrafos */
  .text-container p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
  }
  
  /* Estilo del botón */
  .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f5c100;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 20px;
  }
  
  .button:hover {
    background-color: #f5c100;
  }
  
/* Media Queries para Responsividad */
@media (max-width: 1200px) {
    .image-text-section {
        gap: 50px; /* Menos separación */
    }
    /*.round-image {
        width: 350px;
        height: 350px;
    }*/
    .text-container h2 {
        font-size: 22px;
    }
    .text-container p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    /* En pantallas más pequeñas */
    .image-text-section {
        flex-direction: column;
        align-items: center;
        gap: 20px; /* Mucha menos separación */
    }

    /*.round-image {
        width: 250px;
        height: 250px;
    }*/

    .text-container h5 {
        font-size: 20px;
        text-align: center;
    }

    .text-container p {
        font-size: 14px;
        text-align: center;
    }

    .button {
        font-size: 14px; /* Botón más pequeño */
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    /* En pantallas muy pequeñas */
    /*.round-image {
        width: 200px;
        height: 200px;
    }*/

    .text-container h2 {
        font-size: 18px;
    }

    .text-container p {
        font-size: 12px;
    }

    .button {
        font-size: 12px;
        padding: 6px 12px;
    }
}



.monoposte-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #1A93CF, #1A93CF);
    color: white;
    font-family: 'Outfit', sans-serif;
  }
  
  .monoposte-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .monoposte-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .monoposte-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .monoposte-header p {
    font-size: 1.2rem;
  }
  
  .monoposte-services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Espacio entre los elementos */
  }
  
  .service-box {
    flex: 1 1 calc(50% - 20px); /* Dos columnas */
    box-sizing: border-box;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .service-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
  }
  
  .service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .service-box p {
    font-size: 1rem;
  }
  
  .monoposte-image {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .monoposte-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  /* Responsiveness */
  @media (max-width: 768px) {
    .monoposte-content {
      flex-direction: column;
      align-items: center;
    }
  
    .monoposte-services,
    .monoposte-image {
      max-width: 100%;
    }
  }

  /* Opcional: Responsivo para pantallas pequeñas */
@media (max-width: 768px) {
  .service-box {
    flex: 1 1 100%; /* En móviles se apilan */
  }
}

  /* General Styling */
  .contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    /*background: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);*/
    border-radius: 10px;
    margin: 0px auto;
    padding: 0px 0px;
    text-align: center;
  }
  
  /* Contact Container */
  .contact-container {
    width: 100%;
    max-width: 1200px; /* Eliminar límite de ancho */
    margin: 0 auto;
    padding: 0;
    margin-bottom: 0px;
  }


  
  .help-text {
    margin-bottom: 10px;
  }
  
  .divider-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f5c100;
    display: inline-block;
    border-bottom: 2px solid #f5c100;
    padding-bottom: 5px;
  }
  
  .contact-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333333;
  }
 
   .contact-title1 {
    font-size: 2rem;
    color: #333333;
  } 
  .contact-button {
    display: inline-flex;
    align-items: center;
    background: #1A93CF;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0px 4px 8px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease-in-out;
  }
  
  
  .contact-button:hover {
    background: #193750;
    transform: scale(1.05);
  }
  
  .contact-icon {
    display: inline-block;
    margin-right: 10px;
    width: 20px;
    height: 20px;
  }
  
  .contact-icon svg {
    fill: black;
    width: 100%;
    height: 100%;
  }
  
  /* Benefits Section */
  .benefits-section {
    text-align: center;
    padding: 20px 10px;
  }
  
    .benefits-section1 {
    text-align: center;
   
  }
  
  .benefits-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333333;

  }
  

  .benefits-description {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 20px;
  }
  
  .benefits-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
  
  .benefits-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #333333;
  }
  
  .benefits-list li::before {
    
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #193750;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .benefits-list {
      text-align: center;
    }
  
    .benefits-list li {
      padding-left: 0;
    }
  
    .benefits-list li::before {
      display: none;
    }
  }

/* Sección de Preguntas Frecuentes */
.faq-section {
  background-color: #ffffff; /* Fondo blanco */
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: 1.8rem;
  color: #333;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Contenedor de FAQ */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Estilo de los ítems */
.faq-item {
  background-color: #1A93CF; /* Color del contenedor */
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem;
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.faq-item summary::-webkit-details-marker {
  display: none; /* Oculta el ícono por defecto */
}

.faq-item summary:after {
  content: '\25BC'; /* Flecha abajo */
  font-size: 1rem;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.faq-item[open] summary:after {
  transform: rotate(180deg); /* Gira la flecha al abrir */
}

.faq-answer {
  padding: 1rem;
  font-size: 0.95rem;
  color: #333;
  background-color: #f7f7f7; /* Fondo de respuesta */
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Privacidad */

    .privacidad-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333333;

  }
  
  .privacidad-section {
    text-align: left;
    padding: 10px 10px;
  }

  .privacidad-section1 {
    text-align: left;
    padding: 10px 10px;
}  
}  

  
      .privacidad-title1 {
   
    margin-bottom: 10px;
    color: #333333;
   . h5 {
    font-size: 10px;
    margin-bottom: 15px;
  } 
  }
    .benefits-section1 {
    text-align: center;
   
  
/* Responsivo */
@media (max-width: 768px) {
  .faq-title {
    font-size: 1.5rem;
  }

  .faq-container {
    gap: 0.8rem;
  }

  .faq-item summary {
    font-size: 0.9rem;
  }

  .faq-answer {
    font-size: 0.85rem;
  }
}

		.no-style {
        text-decoration: none; /* Quita el subrayado */
        color: inherit; /* Mantiene el color del texto original */
    }