#contactos-img {
    background-image: url('../imagenes/sospecho/03_Desktop_Banner_Sospecho.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 55% center ; /* mueve la imagen hacia la derecha */
    display: flex;
    justify-content: flex-start; /* Alinea a la izquierda */
    align-items: center;     /* Centra verticalmente */
    height: 200px;
    margin-top: 96px; /* Si querés dejar espacio por la navbar */
    position: relative;
    z-index: 1;
    padding: 0 80px; /* mismo padding lateral que usamos */
}

.contenedor-contactos {
    text-align: left; /* alinea el texto a la izquierda */
}

.contacto-subtitulo {
    font-size: 16px;
    font-weight: 400;
    color: white;
    
}

.linea-contacto {
    width: 41px;
    height: 2px;
    background-color: white;
    border: 2px;
}

.contacto-titulo {
    font-weight: 600;
    color: white;
    font-size: 40px;
    
}


.como-contactarnos {
    margin-top: 50px;
  }
  
  .contenedor-contacto-como {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .titulo-contacto-como {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 700;
  }
  
  /* Fila con 2 cards */
  .fila-contacto {
    display: flex;
    justify-content: center; /* centra horizontalmente todas las cards */
    gap: 40px; /* espacio entre cards */
    flex-wrap: wrap;
  }
  
  /* Card */
  .col-contacto {
    width: 414px;
    height: 274px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;   /* alinea todo a la izquierda */
    justify-content: center; /* centra verticalmente */
    text-align: left;
    padding: 20px;
  }
  .col-contacto:hover{
    border: 1px solid #014375; /* ahora sí se ve azul */
    box-shadow: 0 0 8px rgba(1, 67, 117, 0.3); /* sutil sombra azul */
    transform: translateY(-3px); /* pequeño efecto de "levantarse" */
  }
  .icono-contacto {
    background-color: #F2F1FA; /* fondo del icono */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* sombra ligera */
    border: 1px solid #C0C0C0; /* borde gris */
    border-radius: 3px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  
  .icono-contacto i {
    
    font-size: 24px;       /* tamaño del icono */
    color: #014375;        /* color azul */
  }
  
  /* Título */
  .titulo-card {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
  }
  
  /* Texto */
  .texto-card {
    font-size: 16px;
    font-weight: 400;
    
  }
  .texto-card span {
    font-weight: bold;           /* negrita */
    text-decoration: underline;  /* línea debajo */
                 
}
.whatsapp-link {
    font-weight: 600;         /* resalta el número */
    color: #014375;            /* color azul */
    text-decoration: none;     /* sin subrayado */
    text-decoration: underline; /* siempre subrayado */
  }
  
  .mail-azul {
    color: #014375;
    font-weight: 600;
  }
  


.p-redessociales{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}


#contact-section .contact-bg {
    background-image: url('../imagenes/sospecho/03_Desktop_Banner_Sospecho.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 45% center ; /* mueve la imagen hacia la derecha */
    height: 300px; /* altura fija */
    display: flex;
    justify-content: center; /* centra horizontalmente */
    align-items: center;     /* centra verticalmente */
    text-align: center;
    padding: 20px;
    position: relative;
    margin-top: 50px;
  }
  
  .contact-content-container {
    position: relative;
    z-index: 1;
    color: #fff; /* color de texto sobre la imagen */
  }
  
  .p-redessociales {
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .p-contacto-info {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    
  }
  
  .icono-redes {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 5px;
  }
  .social-icons a:hover img {
    filter: brightness(1.2); /* ilumina la imagen un 20% */
    transform: scale(1.1);   /* agranda ligeramente */
    transition: all 0.3s ease;
  }
/******************** Section de consejos *******************/
.sospecho-contactos {
    margin-left: 60px;
    padding: 40px 20px;
    border-radius: 10px;
}

.consejos-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas del mismo tamaño */
    gap: 20px; /* Espacio entre los consejos */
    margin-top: 20px;
}

.consejo {
    padding: 10px;
}

.h3-contactos {
    font-weight: bold;
    
}
.p-sospecho{
    font-size: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.h4-sospecho{
    margin-bottom: 10px;
    color: #014375; /* Color del texto */
}
.p-azul{
    color: #014375; /* Color del texto */
}



/********** Vista Responsive *************/

@media (max-width: 767px) {

    #contactos-img {
        height: 180px !important;
        margin-top: 50px !important;
        background-position: center;
        display: flex;
        align-items: center; /* centra verticalmente el texto */
        justify-content: flex-start; /* coloca el texto a la derecha */
        padding: 0 20px; /* respeta los márgenes laterales */
        background-size: cover; /* si es imagen de fondo */
    }

    .contacto-titulo {
        font-size: 24px;
    }

    .contacto-subtitulo {
        font-size: 14px;
        margin: 0 auto;
        margin-bottom: 5px;
        font-weight: 400;
    }
    .linea-contacto{
      width: 42px;
      height: 1px;
    }
      
    .como-contactarnos {
          width: 100%;
          height: 546px; /* altura total del section */
          padding: 48px 24px; /* top/bottom 48px, left/right 24px */
          box-sizing: border-box;
          display: flex;
          flex-direction: column;
          justify-content: center; /* centra verticalmente las cards en el section */
          gap: 24px; /* espacio entre las cards */
      }
  
      .contenedor-contacto-como {
          width: 100%;
          display: flex;
          flex-direction: column; /* cards apiladas verticalmente */
          gap: 24px; /* espacio entre cards */
      }
  
      .titulo-contacto-como {
          font-size: 18px;
          font-weight: 700;
          margin-bottom: 16px;
          text-align: center;
      }
  
      .fila-contacto {
          display: flex;
          flex-direction: column; /* una card debajo de la otra */
          gap: 24px;
          width: 100%;
      }
  
      .col-contacto {
          background-color: #fff;
          width: 90%;
          border-radius: 8px;
          box-shadow: 0 4px 6px rgba(0,0,0,0.1);
          height: 261px; /* altura fija */
          padding: 16px;
          box-sizing: border-box;
          display: flex;
          flex-direction: column;
          justify-content: center; /* centra verticalmente el contenido */
          text-align: left;
          margin: 0 auto;
      }
  
      .icono-contacto {
          font-size: 36px;
          color: #014375;
          margin-bottom: 12px;
      }
  
      .titulo-card {
          font-size: 16px;
          font-weight: 700;
          margin-bottom: 8px;
          
      }
  
      .texto-card {
          font-size: 14px;
          line-height: 1.5;
          
      }
  
      .texto-card span {
          font-weight: 700;
      }
  
      .whatsapp-link, .mail-azul {
          color: #014375;
          text-decoration: none;
      }
      #contact-section .contact-bg{
        height: 207px !important;
        margin-top: 70px;
      }
      .p-redessociales{
        font-size: 16px;
      }
      .p-contacto-info{
        font-size: 14px;
      }
      .icono-redes{
        width: 48px;
        height: 48px;
      }
  }
  
   

