/* Variables globales */
:root {
    --primary: #E31837;
    --background-light: #adadad; /* Fondo gris suave */
    --background-dark: #e0e0e0; /* Fondo gris más oscuro */
    --text-dark: #333;
    --text-light: #555;
    --card-bg: #f3f4f6;
    --border-color: #d1d5db;
}

/* Reset y estilos base */
html {
    scroll-behavior: smooth;
}
body {
   
    color: var(--text-dark);
}


body.loaded {
    opacity: 1;
}

/* Loader */
#loader {
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

body.loaded #loader {
    opacity: 0;
    visibility: hidden;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Clases de utilidad para animaciones */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Hero section */
.hero-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Gradiente del Hero Background */
.hero-background {
    background: linear-gradient(45deg, rgba(139, 0, 0, 0.85), rgba(50, 50, 50, 0.85));
}
.hero-background img {
    width: 10vw;
    height: auto;
    object-fit: cover;
}

/* Sección de Misión */
#mision {
    position: relative;
    overflow: hidden;
    background-image: url('/textura.png');
    background-blend-mode: multiply;
}

#mision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 0, 0, 0.95), rgba(100, 0, 0, 0.95));
    z-index: 1;
}

#mision .container {
    position: relative;
    z-index: 2;
}

#mision h2 {
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#mision p {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Sección de Visión */
#vision {
    position: relative;
    overflow: hidden;
    background: rgb(180, 180, 180); /* Gris suave */
}

.vision-title {
    position: relative;
}

.vision-content {
    position: relative;
    z-index: 10;
}

/* Animación del foco */
.light-bulb {
    animation: glow 2s ease-in-out infinite;
}

.rays {
    animation: rotate 10s linear infinite;
    transform-origin: center;
}

@keyframes glow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Efecto de brillo para el texto */
.vision-content p {
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Rays animation */
.bulb-rays line {
    stroke-linecap: round;
    animation: rayPulse 2s ease-in-out infinite;
}

@keyframes rayPulse {
    0%, 100% { stroke-width: 2; }
    50% { stroke-width: 3; }
}

/* Sección de estrategias */
.strategy-card {
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Ajustes para los íconos/imágenes */
.w-16 {
    width: 4rem;
    height: 4rem;
}

img.object-contain {
    transition: transform 0.3s ease;
}

img.object-contain:hover {
    transform: scale(1.1);
}

/* Estilo del texto */
.text-sm {
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .grid-cols-4, .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .mb-32 {
        margin-bottom: 4rem;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 100px;
}

/* Imágenes y logos */
.client-logo {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Efectos hover */
.hover-effect {
    transition: all 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .animate-on-scroll {
        transform: translateY(10px);
    }
}

/* Estilos para la sección de Política de Seguridad */
.security-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.security-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--primary);
}

.security-card, .environment-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.environment-card {
    animation-delay: 0.3s;
    background-color: #8B7355;
}

.security-card:hover, .environment-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.security-card i, .environment-card i {
    transition: transform 0.3s ease;
}

.security-card:hover i, .environment-card:hover i {
    transform: scale(1.2);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animación para los íconos */
.fa-lock, .fa-tree {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Estilos para la sección de Valores */
.puzzle-container {
    perspective: 1000px;
}

.puzzle-piece {
    transform-style: preserve-3d;
    animation: floatPuzzle 6s ease-in-out infinite;
}

.puzzle-piece svg {
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
}

@keyframes floatPuzzle {
    0%, 100% {
        transform: translateY(0) rotateY(0);
    }
    50% {
        transform: translateY(-20px) rotateY(10deg);
    }
}

.valores-list {
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.valor-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInRight 0.5s ease forwards;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Aplicar retraso a cada valor */
.valor-item:nth-child(1) { animation-delay: 0.1s; }
.valor-item:nth-child(2) { animation-delay: 0.2s; }
.valor-item:nth-child(3) { animation-delay: 0.3s; }
.valor-item:nth-child(4) { animation-delay: 0.4s; }
.valor-item:nth-child(5) { animation-delay: 0.5s; }
.valor-item:nth-child(6) { animation-delay: 0.6s; }
.valor-item:nth-child(7) { animation-delay: 0.7s; }
.valor-item:nth-child(8) { animation-delay: 0.8s; }
.valor-item:nth-child(9) { animation-delay: 0.9s; }

.valor-item:hover {
    color: var(--primary);
}

/* Efecto de brillo en el punto rojo */
.valor-item:hover .w-2 {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/*clientes*/

/* Estilos para la sección de Clientes */
.cliente-title {
    position: relative;
    font-family: 'Impact', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cliente-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.cliente-title:hover::after {
    width: 150px;
}

.client-logo-container {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.logo-wrapper {
    background: var(--soft-gray);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logo-wrapper:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.client-logo {
    transition: all 0.3s ease;
}

/* Animación de entrada escalonada para los logos */
.client-logo-container:nth-child(1) { animation-delay: 0.1s; }
.client-logo-container:nth-child(2) { animation-delay: 0.2s; }
.client-logo-container:nth-child(3) { animation-delay: 0.3s; }
.client-logo-container:nth-child(4) { animation-delay: 0.4s; }
.client-logo-container:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efecto de hover para los logos */
.logo-wrapper:hover {
    transform: translateY(-5px);
}

/* Media queries para responsividad */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .w-1/3, .w-2/3 {
        width: 100%;
    }
    
    .cliente-title {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .cliente-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Estilos para la sección de Recursos Humanos */
.recursos-title {
    font-family: 'Impact', sans-serif;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
}

.recursos-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: -1;
}

.recursos-content {
    position: relative;
    background: var(--soft-gray);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.recursos-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background-color: var(--primary);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .recursos-title {
        font-size: 2.5rem;
    }
    
    .recursos-content {
        margin-top: 2rem;
    }
}

/* Animaciones de entrada */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.recursos-title {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.recursos-content {
    animation: fadeInRight 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

/* Estilos para la sección de Objetivos */
.objetivos-title {
    font-family: 'Impact', sans-serif;
    position: relative;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.objetivos-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.objetivos-title:hover::after {
    width: 150px;
}

.objetivo-card {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.objetivo-card:nth-child(1) { animation-delay: 0.1s; }
.objetivo-card:nth-child(2) { animation-delay: 0.2s; }
.objetivo-card:nth-child(3) { animation-delay: 0.3s; }
.objetivo-card:nth-child(4) { animation-delay: 0.4s; }
.objetivo-card:nth-child(5) { animation-delay: 0.5s; }

.objetivo-card i {
    transition: transform 0.3s ease;
}

.objetivo-card:hover i {
    transform: scale(1.2);
}

.objetivo-card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.objetivo-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Media queries */
@media (max-width: 768px) {
    .objetivo-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .objetivo-card i {
        margin-bottom: 1rem;
    }
}

/* Estilos para la sección de Estrategias */
.w-16 {
    width: 4rem;
    height: 4rem;
}

.text-sm {
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .grid-cols-4, .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .mb-32 {
        margin-bottom: 4rem;
    }
}

/* Estilos para la sección de Ventajas Competitivas */
.ventajas-title {
    font-family: 'Impact', sans-serif;
    letter-spacing: 1px;
    position: relative;
}

.w-2 {
    min-width: 0.5rem;
}

.flex items-start {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.5s ease forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

li:nth-child(1) { animation-delay: 0.1s; }
li:nth-child(2) { animation-delay: 0.2s; }
li:nth-child(3) { animation-delay: 0.3s; }
li:nth-child(4) { animation-delay: 0.4s; }
li:nth-child(5) { animation-delay: 0.5s; }
li:nth-child(6) { animation-delay: 0.6s; }
li:nth-child(7) { animation-delay: 0.7s; }

li:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Responsive design */
@media (max-width: 768px) {
    .flex {
        flex-direction: column;
    }
    
    .w-1/2 {
        width: 100%;
    }
    
    img {
        margin-bottom: 2rem;
    }
}

/* Sección de ventajas */
.ventajas-section {
    padding: 4rem 0;
    background-color: #f3f4f6;
}

.feature-card {
    display: flex;
    align-items: center;
    background: var(--soft-gray);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.icon-container {
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.icon-container i {
    font-size: 2.5rem;
    color: var(--primary);
}

.feature-card p {
    font-size: 1.125rem;
    color: #1a1a1a;
}

.calidad-title {
    margin-top: 4rem;
    text-align: center;
}

.calidad-title h2 {
    font-family: 'Impact', sans-serif;
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
}

/* Media queries */
@media (max-width: 768px) {
    .feature-card {
        flex-direction: column;
        text-align: center;
    }

    .icon-container {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .calidad-title h2 {
        font-size: 3rem;
    }
}

/* Estilos para el menú fijo */
#mainHeader {
    z-index: 1000;
    position: sticky;
    top: 0;
    width: 100%;
    transition: background-color 0.3s ease;
    background-color: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 10px 0;
}

#mainHeader nav a {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
}

#mainHeader nav a:hover {
    color: #E31837;
    text-decoration: none;
}

/* Menú móvil más visible */
#mobileMenu {
    background-color: rgba(0, 0, 0, 0.95);
    padding-top: 20px;
}

/* Ajustes para la sección debajo de la imagen principal */
.hero-section + div {
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    background-color: #333;
    padding: 20px 0;
}

/* ===============================
   Bloque eliminado: Estilos antiguos del menú móvil
   (Este bloque se quitó porque interfiere con el método basado en
   transformaciones horizontales usado en el HTML y JS)
=============================== */

/* formulario contacto */
.form-group {
    position: relative;
}

.form-type-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.form-type-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.form-type-button:hover::after {
    left: 100%;
}

.form-type-button.active {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-input {
    background-color: var(--soft-gray);
    transition: all 0.3s ease;
}

.form-input:focus {
    background-color: var(--soft-gray);
    transform: translateY(-1px);
}

.error-message {
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    color: var(--primary);
    font-size: 0.875rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-input.error {
    border-color: var(--primary);
    background-color: #fef2f2;
}

.form-input.error + .error-message {
    opacity: 1;
    transform: translateY(0);
}

.success-message {
    background-color: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes formFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#cotizacion .animate-on-scroll {
    animation: formFadeIn 0.6s ease-out;
}

@media (max-width: 768px) {
    .form-type-button {
        width: 100%;
    }
    
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
}

/* Animaciones para las tarjetas */
.grid > div {
    animation: fadeIn 0.6s ease forwards;
}

.grid > div:nth-child(1) { animation-delay: 0.1s; }
.grid > div:nth-child(2) { animation-delay: 0.2s; }
.grid > div:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.group:hover .h-1 {
    width: 6rem;
}

.group img {
    transition: transform 0.5s ease;
}

.group:hover img {
    transform: scale(1.1);
}

.no-scrollbar::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
}

.no-scrollbar {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

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

.hero-section img {
    max-width: 100%;
    height: auto;
}

.hero-section p {
    font-size: 1.5rem;
    font-weight: 400;
}

/* ajustes */

.swiper-container {
    overflow: hidden;
    max-width: 100%;
    padding-bottom: 40px;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 250px;
    transition: transform 0.3s ease;
}

.swiper-slide:hover {
    transform: scale(1.05);
}

@media (min-width: 1440px) {
    .swiper-slide {
        width: 20%;
    }
}

@media (max-width: 1024px) {
    .swiper-slide {
        width: 30%;
    }
}

@media (max-width: 768px) {
    .swiper-slide {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .swiper-slide {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .swiper-slide {
        width: 90%;
    }
}

@media (max-width: 320px) {
    .swiper-slide {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .swiper-slide {
        width: 90% !important;
        min-width: unset;
        flex: 1 0 auto;
    }

    .swiper-wrapper {
        display: flex;
        justify-content: center;
    }
}

/* ajustes menu */
html, body {
    overflow-x: hidden;
}

.hero-section img {
    width: 100vw;
    height: auto;
    object-fit: cover;
}

.hero-section video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.hero-section {
    position: relative;
    width: 100vw;
    overflow: hidden;
}

@media (max-width: 768px) {
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    
    .hero-section img {
        width: 100%;
        height: auto;
    }
}

/* Ajustes para la sección de ventajas */
#ventajas {
    padding: 4rem 1rem;
}

#ventajas h2 {
    font-size: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    #ventajas h2 {
        text-align: left;
    }
}

#ventajas ul li {
    display: flex;
    align-items: start;
    gap: 12px;
}

#ventajas ul li div {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-top: 6px;
}

#ventajas img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    #ventajas .flex {
        flex-direction: column;
        text-align: center;
    }

    #ventajas ul {
        text-align: left;
    }

    #ventajas img {
        max-width: 70%;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    #ventajas img {
        max-width: 100%;
    }

    #ventajas h2 {
        font-size: 1.8rem;
    }
}





/*tonos blancos*/

/* Variables globales */
:root {
    --primary: #E31837;
    --background-light: #f8f9fa; /* Fondo gris suave */
    --background-dark: #e0e0e0; /* Fondo gris más oscuro */
    --text-dark: #333;
    --text-light: #555;
    --card-bg: #f3f4f6;
    --border-color: #d1d5db;
}

/* Reset y estilos base */
body {

    color: var(--text-dark);
}



#nosotros .grid div {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}




#servicios .grid div {

    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Sección "Valores" */


.valores-list {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Sección "Cotización" */


#cotizacion .bg-white {
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-group input,
.form-group select {
    border: 1px solid var(--border-color);
    background-color: var(--card-bg); /* Cambio de blanco a gris claro */
    color: var(--text-dark);
    border-radius: 5px;
    padding: 8px;
}

/* Sección "Contactanos" */
#contacto {
    background-color: #1a1a1a;
    color: white;
}

#contacto .bg-neutral-900 {
    background-color: #2d2d2d;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Sección "Ventajas Competitivas" */


.ventajas-list div {
    background-color: var(--card-bg);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Ajustes generales para bordes y sombras */
.shadow-lg {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.rounded-lg {
    border-radius: 10px;
}
