        body {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
			padding-top: 120px;
        }
		
		.home {
            background: url('../img/home.webp') no-repeat center top/cover;
			min-height: 700px;
			padding-top: 120px;
        }

		.pages {
			min-height: 700px;
			padding-top: 120px;
        }
		
		.bordes {
			padding-left:15px; padding-right:15px;
		}
			
        /* Secciones del cuerpo (5 bloques) */
        .main-section {
            height: 20vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-shadow: 0 0 10px rgba(0,0,0,0.6);
        }

        /* Navbar */
        .navbar-custom {
            background-color: rgba(255,255,255,0.95);
		    position: fixed;
		    top: 0;
		    left: 0;
		    width: 100%;
		    z-index: 9999; /* para que quede arriba de todo */
			border-bottom: 10px solid #ff0000;
		}

        /* Submenú */
        .dropdown-menu {
            font-size: 0.9rem;
        }
		
		.imgmiddle	{
		margin: 0;
		position: relative;
		top: 50%;
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		}
		
		.btn-xl {
  padding: .75rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 0.85rem;
  border-width: 3px;
  border-radius: 10rem;
  background-color:#db281c;
  border-color:#db281c;
  
  
  }
		
		p.footer {
            font-size: 0.7rem;
			text-align:right;
        }

        /* Footer */
        footer {
            background: #000;
            color: #f1f1f1;
            padding: 40px 0;
        }
        footer .col {
            text-align: center;
        }
		
		a.gris {
		 color:#ccc;
		 text-decoration: none;
		 }
		a.gris:hover {
			color:#ff3333;
		}
		
		.contacto-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contacto-section h2 {
    color: #d43732;
    font-size: 28px;
    margin-bottom: 5px;
}

.contacto-section h3 {
    font-size: 22px;
    margin: 5px 0;
}

.contacto-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contacto-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.contacto-form input,
.contacto-form select {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 12px;
    outline: none;
}

.contacto-form input:focus,
.contacto-form select:focus {
    border-color: #d43732;
}

.form-submit {
    margin-top: 25px;
}

.form-submit button {
    background: #d43732;
    color: #fff;
    padding: 14px 40px;
    font-size: 18px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.form-submit button:hover {
    background: #b52d29;
}

/* ?? Estilos responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .contacto-section h2 {
        font-size: 24px;
    }

    .contacto-section h3 {
        font-size: 20px;
    }
}
		

