/* General */
body {
    font-family: 'Arial', sans-serif;
    background: #f4f7fa;
    color: #333;
}

/* Top bar */
.top-bar {
    background: #587ac5;
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}

/* Navbar */
.navbar-brand {
    font-size: 26px;
    display: flex;
    align-items: center;
}

.logo {
    height: auto;
}

/* Hero Section */
.hero-section {
    background: url('../images/header_v4_1.jpg') no-repeat center center / cover;
    color: #ffffff;
    height: 680px; /* Altura fija para escritorio */
    display: flex;
    align-items: center;
    text-align: left;
}

.hero-section-about {
    background: url('../images/hero_about_v5.jpg') no-repeat center center / cover;
    color: #ffffff;
    height: 680px; /* Altura fija para escritorio */
    display: flex;
    align-items: center;
    text-align: left;
}

/* Sección de Servicios */
.services-section {
    background: #fff;
    padding: 80px 0;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 32px;
    color: #587ac5;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.service-card p {
    font-size: 16px;
    color: #666;
}

/* Nueva Sección de Contacto */
.contact-hero {
    background: url('../images/contact_bg.jpg') no-repeat center center / cover;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.contact-hero h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.contact-hero p {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #181818;
    color: #dcdcdc;
    padding: 50px 0;
}

.footer-logo {
    width: 270px;
    margin-bottom: 15px;
}

.footer h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}

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

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    text-decoration: none;
    color: #bfbfbf;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #587ac5;
}

/* Social Icons */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    font-size: 20px;
    color: #bfbfbf;
    transition: color 0.3s ease;
    margin: 0 10px;
}

.social-icons a:hover {
    color: #587ac5;
}

/* Copyright */
.footer hr {
    opacity: 0.2;
    margin: 20px 0;
}

/* Sección Sobre Nosotros */
.about-section {
    background: #587ac5;
    padding: 80px 0;
}

.about-badge {
    font-size: 16px;
    padding: 10px 15px;
    background: rgb(255 255 255 / 91%);
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    color: #ffffff;
}

/* Títulos y texto */
.about-section h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffffff;
}

.about-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Lista de checks */
.about-section ul {
    padding: 0;
    list-style: none;
}

.about-section ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-section ul li i {
    font-size: 20px;
    color: #f8d210;
}

/* Botón */
.about-section .btn {
    padding: 12px 20px;
    font-size: 1rem;
}

/* Imagen */
.about-image img {
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}


/* Sección Beneficios de Cloud Minds */
.benefits-section {
    background: #ffffff;
    padding: 80px 0;
}

/* Badge más grande */
.benefits-badge {
    font-size: 18px; /* Más grande */
    padding: 12px 18px; /* Más espacioso */
    background: rgba(0, 123, 255, 0.1);
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    color: #666; /* Color gris para "¿Por qué elegir" */
}

/* Títulos y texto */
.benefits-section h2 {
    font-size: 2.4rem; /* Más grande */
    font-weight: bold;
    color: #333;
}

.benefits-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

/* Lista con checks */
.benefits-section ul {
    padding: 0;
    list-style: none;
}

.benefits-section ul li {
    font-size: 1.1rem; /* Un poco más grande */
    margin-bottom: 12px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits-section ul li i {
    font-size: 22px; /* Íconos más grandes */
    color: #007bff;
}

/* Imagen */
.benefits-section img {
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsivo */
@media (max-width: 992px) {
    .hero-section {
        padding: 100px 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section-about {
        padding: 100px 0;
    }

    .hero-section-about h1 {
        font-size: 2.5rem;
    }

    .contact-hero {
        padding: 60px 0;
    }

    .contact-hero h2 {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    #contact-btn{
        margin-left: 0 !important;
    }
}

@media (max-width: 767px) {
    .service-card{
        margin-bottom: 2% !important;
    }
}

@media (max-width: 768px) {
    .logo {
        width: 180px !important;
    }

    .footer .text-center {
        text-align: center !important;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .service-card h4 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-section-about {
        padding: 80px 0;
    }

    .hero-section-about h1 {
        font-size: 2rem;
    }

    .hero-section-about p {
        font-size: 1rem;
    }

    .contact-hero h2 {
        font-size: 1.8rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .about-section h2 {
        font-size: 2rem;
    }

    .about-section p {
        font-size: 1rem;
    }
    
    .about-section ul li {
        font-size: 0.9rem;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .benefits-section {
        text-align: center;
    }

    .benefits-badge {
        font-size: 16px;
        padding: 10px 15px;
    }

    .benefits-section h2 {
        font-size: 2rem;
    }

    .benefits-section p {
        font-size: 1rem;
    }

    .benefits-section ul li {
        font-size: 1rem;
    }
}

/* Ajustes para pantallas medianas */
@media (max-width: 1200px) {
    .hero-section {
        height: 500px;
    }
    .hero-section-about {
        height: 500px;
    }
}

/* Ajustes para tablets */
@media (max-width: 992px) {
    .hero-section {
        height: 450px;
        text-align: center;
    }
    .hero-section-about {
        height: 450px;
        text-align: center;
    }
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .hero-section {
        height: 400px;
        padding: 80px 0;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
    .hero-section-about {
        height: 400px;
        padding: 80px 0;
    }

    .hero-section-about h1 {
        font-size: 2.2rem;
    }

    .hero-section-about p {
        font-size: 1rem;
    }
}

/* Sección de Ubicación */
.location-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    font-size: 18px;
    color: #587ac5;
}

/* Mapa Responsivo */
.map-container {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
}

/* Sección Quiénes Somos */
.about-cloudminds {
    background: #f8f9fa;
}

/* Ajuste de imagen */
.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

/* Lista de características con iconos */
.about-list {
    padding: 0;
    list-style: none;
}

.about-list li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: #333;
}

/* Iconos */
.about-list i {
    font-size: 1.3rem;
    color: #587ac5;
}

/* Responsive */
@media (max-width: 768px) {
    .about-cloudminds {
        text-align: center;
        padding: 50px 20px;
    }

    .about-cloudminds h2 {
        font-size: 1.8rem;
    }

    .about-cloudminds p {
        font-size: 1rem;
    }

    .about-list li {
        font-size: 1rem;
        justify-content: center;
    }

    .about-list i {
        font-size: 1.2rem;
    }
}
