/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Encabezado */
header {
    background-color: #111;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Banner Principal */
.main-banner {
    background: url('images/intro.jpeg') no-repeat center center/cover; /* Aquí cambia la ruta de la imagen */
    height: 100vh; /* El banner ocupa toda la pantalla */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.main-banner h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.main-banner p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.main-banner .cta-button {
    background-color: #ff6f61;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 25px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.main-banner .cta-button:hover {
    background-color: #e55a49;
    transform: scale(1.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

nav .logo img {
    width: 250px;
    height: auto;
}

nav .menu {
    display: flex;
    gap: 30px;
	margin-bottom: -220px;
}

nav .menu li {
    display: inline-block;
}

nav .menu a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav .menu a:hover {
    background-color: #ff6f61;
}

/* Sección Hero */
.hero {
    background: linear-gradient(135deg, #ff6f61, #111);
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    background-size: cover;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-button {
    background-color: #ff6f61;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 25px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e55a49;
    transform: scale(1.05);
}

/* Sección de Servicios */
.services {
    background-color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 500;
    color: #111;
}

.service-item {
    margin-bottom: 40px;
}

.service-item h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    font-size: 1rem;
    color: #777;
}

/* Sección de Planes */
.pricing {
    background-color: #ff6f61;
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 600;
}

.pricing-option {
    display: inline-block;
    background-color: #fff;
    color: #111;
    width: 280px;
    margin: 20px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-option:hover {
    transform: translateY(-10px);
}

.pricing-option h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.pricing-option p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.pricing-option strong {
    font-size: 1.5rem;
    color: #ff6f61;
}

.pricing-option .cta-button {
    background-color: #111;
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 30px;
}

.pricing-option .cta-button:hover {
    background-color: #e55a49;
}

/* Sección de contacto */
.contact {
    background-color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    color: #333;
}

.contact button {
    background-color: #ff6f61;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact button:hover {
    background-color: #e55a49;
}

/* Pie de página */
footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 1rem;
    font-weight: 300;
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #ff6f61;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none; /* Ocultamos el botón por defecto */
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, transform 0.3s;
}

.scroll-top:hover {
    background-color: #e55a49;
}

.scroll-top.show {
    display: flex; /* Muestra el botón cuando se aplica la clase "show" */
}
