/*=========================================
CONGRESO GEOMETALURGIA 2027
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    color:#222;
    background:#fff;
    overflow-x:hidden;

}

/*============================
NAVBAR
============================*/

  .carousel {
        position: relative;
   
}


.navbar{

    background:#111;
    transition:.4s;
    padding:15px 0;

}

.navbar-brand img{

    transition:.3s;

}

.navbar-brand img:hover{

    transform:scale(1.05);

}

.nav-link{

    color:#fff !important;
    margin-left:18px;
    font-weight:500;
    transition:.3s;

}

.nav-link:hover{

    color:#d32027 !important;

}

.btn-danger{

    background:#c5161d;
    border:none;
    border-radius:30px;
    padding:12px 28px;
    transition:.35s;

}

.btn-danger:hover{

    background:#a60007;
    transform:translateY(-3px);

}

.btn-primary{

    background:#0d4b63;
    border:none;
    border-radius:30px;

}

.btn-primary:hover{

    background:#08384a;

}

.btn-warning{

    border-radius:30px;
}

/*============================
SLIDER
============================*/

.carousel-item{

    height:100vh;

}

.carousel-item img{

    width:100%;
    height:100vh;
    object-fit:cover;
    filter:brightness(.45);

}

.carousel-caption{

    bottom:18%;
    text-align:left;
    max-width:700px;

}

.carousel-caption h5{

    font-size:26px;
    letter-spacing:2px;
    margin-bottom:20px;

}

.carousel-caption h1{

    font-size:65px;
    font-weight:800;
    text-transform:uppercase;

}

.carousel-caption p{

    font-size:22px;
    margin:25px 0;

}

/*============================
SECCIONES
============================*/

section{

    padding:90px 0;

}

h2{

    font-size:45px;
    font-weight:700;
    color:#111;
    margin-bottom:30px;

}

p{

    color:#666;
    line-height:1.9;

}

/*============================
CARDS
============================*/

.card{

    border:none;
    border-radius:25px;
    transition:.4s;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.card:hover{

    transform:translateY(-12px);

}

.card-body{

    padding:40px;

}

.icono{

    font-size:60px;
    color:#c5161d;
    margin-bottom:20px;

}

.card h4{

    font-weight:700;

}

/*============================
LOGO CENTRAL
============================*/

.logo-central{

    max-width:420px;
    transition:.4s;

}

.logo-central:hover{

    transform:scale(1.05);

}

/*============================
PRECIOS
============================*/

.precio{

    background:#fff;
    padding:45px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    transition:.4s;

}

.precio:hover{

    transform:translateY(-10px);

}

.precio h3{

    font-weight:700;
    margin-bottom:20px;

}

.precio h1{

    font-size:50px;
    color:#c5161d;
    margin-bottom:25px;

}

/*============================
TIMELINE
============================*/

.timeline{

    background:#fff;
    border-left:6px solid #c5161d;
    padding:35px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    border-radius:20px;

}

.timeline h4{

    color:#0d4b63;
    font-weight:700;

}

/*============================
FORMULARIO
============================*/

form input,
form textarea{

    border-radius:15px;
    padding:15px;

    border:none;

}

form input:focus,
form textarea:focus{

    box-shadow:0 0 10px rgba(197,22,29,.35);

}

/*============================
FOOTER
============================*/

footer{

    background:#111;
    color:#fff;
    text-align:center;
    padding:30px;

}

/*============================
BOTON FLOTANTE
============================*/

.whatsapp{

    position:fixed;
    right:20px;
    bottom:20px;

    width:65px;
    height:65px;

    background:#25D366;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:35px;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.3);

    z-index:999;

    transition:.3s;

}

.whatsapp:hover{

    transform:scale(1.1);

    color:white;

}

/*============================
ANIMACIONES
============================*/

.card,
.precio,
.timeline{

    animation:subir 1s ease;

}

@keyframes subir{

0%{

opacity:0;
transform:translateY(40px);

}

100%{

opacity:1;
transform:translateY(0);

}

}

/*============================
RESPONSIVE
============================*/

@media(max-width:992px){

.carousel-caption{

text-align:center;

bottom:15%;

}

.carousel-caption h1{

font-size:45px;

}

.carousel-caption h5{

font-size:22px;

}

h2{

font-size:34px;

}

.logo-central{

margin-top:40px;

max-width:280px;

}

}

@media(max-width:768px){

.carousel-item{

height:75vh;

}

.carousel-item img{

height:75vh;

}

.carousel-caption{

bottom:12%;

}

.carousel-caption h1{

font-size:32px;

}

.carousel-caption h5{

font-size:18px;

}

.carousel-caption p{

font-size:16px;

}

.navbar-brand img{

height:55px;

}

.card{

margin-bottom:30px;

}

.precio{

margin-bottom:30px;

}

section{

padding:60px 0;

}

}

@media(max-width:576px){

.carousel-caption h1{

font-size:28px;

}

.carousel-caption p{

display:none;

}

.btn{

width:100%;

margin-top:10px;

}

}/* CSS Document */

