/* Paleta de Colores
   Azul Marino: #1A2B48
   Fucsia: #E91E63
   Turquesa: #00CED1
   Amarillo: #FFD700
*/

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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A2B48;
}

.logo span {
    color: #00CED1; /* Turquesa del logo */
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #1A2B48;
    margin: 0 15px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-nav {
    background: #E91E63;
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 80px 8%;
    background: linear-gradient(135deg, #ffffff 50%, #f0f7f7 100%);
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #1A2B48;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(90deg, #E91E63, #00CED1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(90deg, #E91E63, #00CED1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
    display: inline-block;
    margin-left: 20px;
    color: #1A2B48;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #FFD700; /* Toque Amarillo */
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.placeholder-img {
    width: 80%;
    height: 300px;
    background: #eee;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ccc;
    color: #999;
}

/* Features */
.features {
    display: flex;
    justify-content: space-around;
    padding: 60px 8%;
    background: white;
}

.feature-card {
    text-align: center;
    padding: 30px;
    max-width: 300px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #1A2B48;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
    .features { flex-direction: column; align-items: center; }
    .btn-secondary { margin: 20px 0 0 0; display: block; }
}