/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: #333;
    color: #fff;
    padding: 20px 0;
}

header .logo img {
    height: 65px; /* Aumentamos el tamaño del logo un 30% (de 50px a 65px) */
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: url('assets/hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero .btn {
    background: #000; /* Fondo negro */
    color: #fff; /* Texto blanco */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease; /* Transición suave */
}

.hero .btn:hover {
    background: #333; /* Cambio de color al hacer hover */
}

/* Benefits Section */
.benefits {
    padding: 60px 0;
    text-align: center;
}

.benefits h2 {
    margin-bottom: 40px;
}

.benefits-grid {
    display: flex;
    justify-content: space-around;
}

.benefit-item {
    width: 30%;
}

.benefit-item i {
    font-size: 2rem;
    color: #000; /* Íconos en negro */
    margin-bottom: 20px;
}

/* Features Section */
.features {
    padding: 60px 0;
    text-align: center;
}

.features h2 {
    margin-bottom: 40px;
}

.features-grid {
    display: flex;
    justify-content: space-around;
}

.feature-item {
    width: 30%;
}

.feature-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer .social-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

footer .social-links a:hover {
    color: #ff6f61;
}