/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #001845;
}

/* Navbar styles */
.navbar {
    background-color: rgba(33, 37, 41, 0.7) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-brand {
    color: white !important;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.navbar .nav-link {
    color: white !important;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #007bff !important;
}

/* Hero section */
.hero-section {
    height: 110vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: -76px;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    margin-left: 5%;
}

.main-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-style: italic;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #ffffff;
    padding-left: 0;
    padding-right: 0;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    height: auto;
    margin-left: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.about-content {
    padding-left: 50px;
}

.section-subtitle {
    color: #007bff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    color: #002651;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-description {
    color: #666;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
}

.services-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    color: #333;
    font-size: 1rem;
}

.services-list li::before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    padding-left: 0;
    padding-right: 0;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card.highlighted {
    background: #007bff;
    color: white;
}

.service-card.highlighted h3,
.service-card.highlighted p {
    color: white;
}

.service-card:not(.highlighted):hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 1.8rem;
    }
    .about-section,
    .services-section {
        padding: 60px 0;
    }
}

/* Contact page styles */
.contact-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: white !important;
}

.contact-header {
    background-color: #001845;
    padding: 180px 0 80px;  /* Antes era 120px 0 80px */
}

.contact-header h1 {
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.form-section {
    background-color: white !important;
    flex: 1;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.contact-form {
    background-color: #fff !important;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form label {
    color: #001845;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.contact-form .form-control {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 15px;
    height: auto;
    font-size: 1rem;
}

.contact-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

.contact-send-btn {
    background-color: #007bff;
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.contact-send-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Específico para el footer en la página de contacto */
.contact-page .footer {
    background-color: #001845;
    margin-top: auto;
    position: relative;
    z-index: 0;
}

/* Ajustes responsivos para la página de contacto */
@media (max-width: 768px) {
    .contact-header {
        padding: 140px 0 60px;
    }
    
    .form-section {
        padding: 40px 0;
    }
    
    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
};
    font-weight: 600;
    margin: 20px 0;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 100px 0;
    margin-bottom: 0;
    background-color: #001845;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background-color: rgba(0, 32, 96, 0.9);
    z-index: 0;
}

.testimonials-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 60px 0;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.quote-icon {
    width: 60px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
}

.testimonial-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 30px 0;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.author-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
}

.author-info {
    text-align: center;
}

.author-info h4 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

.author-info p {
    margin: 5px 0 0;
    color: #007bff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer Styles */
.footer {
    background-color: #001845;
    color: #ffffff;
    padding: 120px 0 40px;
    position: relative;
    margin-top: 0;
}

.footer-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-subtitle {
    color: #a8b2d1;
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.footer h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 20px;
}

.footer-links a {
    color: #a8b2d1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    line-height: 1.8;
}

.footer-links a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-contact {
    color: #a8b2d1;
    font-size: 1.1rem;
}

.footer-contact p {
    margin-bottom: 15px;
}

.footer-contact strong {
    font-size: 1.2rem;
    color: #ffffff;
    display: block;
    margin-bottom: 20px;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.footer-contact a:hover {
    color: #007bff;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #a8b2d1;
    font-size: 1rem;
}

.footer-col {
    margin-bottom: 50px;
}

/* Botón de contacto */
.contact-btn {
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.contact-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Formulario */
.form-control {
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .main-title {
        font-size: 4rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .main-title {
        font-size: 3.5rem;
    }
    .hero-text {
        font-size: 1.1rem;
    }
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    .navbar-collapse {
        background-color: rgba(33, 37, 41, 0.95);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-content {
        padding: 30px 0;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    .section-title {
        font-size: 2rem;
    }
    .service-card {
        margin-bottom: 20px;
    }
    .testimonial-card {
        margin: 10px;
        padding: 30px;
        min-height: auto;
    }
    .author-image {
        width: 100px;
        height: 100px;
    }
    .footer {
        padding: 80px 0 30px;
    }
    .footer-title {
        font-size: 2rem;
    }
    .footer-col {
        margin-bottom: 40px;
    }
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 2.5rem;
    }
    .hero-content {
        margin-left: 0;
        text-align: center;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .about-section,
    .services-section {
        padding: 60px 0;
    }
}
