@import url('https://fonts.googleapis.com/css?family=Open+Sans');
@import url(menu.css);
@import url(banner.css);
@import url(blog.css);
@import url(info.css);
@import url(galeria.css);


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
}

header {
    width: 100%;
    height: 50px;
    background: #333;
    color: #fff;
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.contenedor {
    width: 98%;
    margin: auto;
}

h1 {
    float: left;
}

header .contenedor {
    display: table;
}

section {
    width: 100%;
    margin-bottom: 25px;
}

#bienvenidos {
    text-align: center;
}

footer .contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 25px;
}

.copy {
    font-size: 15px;
}

.sociales {
    width: 100%;
    text-align: center;
    font-size: 28px;
}

.sociales a {
    color: #333;
    text-decoration: none
}

@media (min-width:768px) {
    .sociales {
        width: auto;
    }
    
    footer .contenedor {
        justify-content: space-between;
    }
}


@media (min-width:1024px) {
    .contenedor {
        width: 1000px;
    }
}


h3 {
	text-align:center;
	font-size: 23px;
}

h2 {
	text-align:center;
	font-size: 28px;
}

h5 {
	text-align:center;
}

p {
	text-align:center;
	margin: 0px;
	font-size: 17px;
}

a {
	text-decoration: none;
}

.whatsapp-float {
    position: fixed;
    width: 80px;
    height: 74;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    cursor: pointer;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Contenedor principal de tarifas */
.seccion-tarifas-intro {
    padding: 60px 20px;
    background-color: #f8f9fa; /* Gris muy claro y profesional */
    text-align: center;
    border-bottom: 2px solid #dee2e6;
}

.tarifas-contenedor {
    max-width: 850px;
    margin: 0 auto;
}

/* Título */
.tarifas-titulo {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50; /* Azul oscuro elegante */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* Subtítulo */
.tarifas-subtitulo {
    font-family: 'Open Sans', sans-serif;
    color: #7f8c8d;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* Texto de párrafo */
.tarifas-texto {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    max-width: 700px;
    margin: 0 auto;
}

/* Ajuste móvil */
@media (max-width: 768px) {
    .tarifas-titulo {
        font-size: 1.8rem;
    }
    .tarifas-subtitulo {
        font-size: 1rem;
    }
}