/*
    Estilos personalizados para Gasvar
    Autor: acm32
*/

/* =========================
   RESET BÁSICO
========================= */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Nunito', sans-serif;
    background-color: #f8c8dc;


    color: #2E2E2E;
    line-height: 1.6;
}

/* Evitar espacios fantasma */
body {
    display: flex;
    flex-direction: column;
}

/* =========================
   TEXTOS
========================= */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    color: #19559d;
}

p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 1rem;
}
.text-primary {
    color: #19559d !important;
}

/* =========================
   Botones
========================= */
.btn-primary {
    background-color: #19559d;
    border-color: #19559d;
}

.btn-primary:hover {
    background-color: #15457f;
    border-color: #15457f;
}
.btn-instagram {
    background: linear-gradient(45deg,
        #F58529,
        #DD2A7B,
        #8134AF,
        #515BD4);
    color: #fff;
    border: none;
}

.btn-instagram:hover {
    opacity: 0.9;
    color: #fff;
}




/* =========================
   LOGO
========================= */
.logo {
    width: 260px;
    max-width: 90%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
    cursor: pointer;
    transition: transform 0.25s ease;
}

/* Animacion al hacer hover */
.logo:hover {
    transform: scale(1.08);
}


/* Quitar borde azul / cursor */
a,
a:focus,
a:active {
    outline: none;
}
a img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;

    -webkit-user-drag: none;
    pointer-events: auto;
}

/* =========================
   SECCIONES
========================= */
section {
    padding-left: 15px;
    padding-right: 15px;
}

/* =========================
   CARRUSEL
========================= */
#carouselExample {
    max-width: 800px;
    margin: 40px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

#carouselExample .carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* =========================
   CARDS
========================= */
.card {
    border: none;
    border-radius: 12px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
}
/* COlores correctos */
.card-title {
    color: #19559d;
    font-weight: 700;
}
.card-title i {
    color: #19559d;
}


/* =========================
   FOOTER
========================= */
footer {
    background-color: #2E2E2E;
    color: #ffffff;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    margin-top: auto; /* CLAVE: pega el footer abajo */
}

/* =========================
   RESPONSIVE
========================= */

/* Tablets */
@media (max-width: 768px) {
    #carouselExample .carousel-item img {
        height: 260px;
    }

    p {
        font-size: 17px;
    }

    h1 {
        font-size: 28px;
    }
}

/* Móviles */
@media (max-width: 576px) {
    .logo {
        width: 200px;
    }

    p {
        font-size: 16px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 22px;
    }

    .card {
        margin-bottom: 15px;
    }
}








