* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f8f8f8;
    color: #222;
}

/* NAVBAR */
.navbar {
    background: #33cc66;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
}

.navbar .logo {
    font-weight: bold;
    color: #0b3d2e;
}

.navbar nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #0b3d2e;
    font-size: 14px;
}

.navbar nav a.active {
    background: #0b3d2e;
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
}

.auth a {
    margin-left: 10px;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
}

.btn-outline {
    border: 1px solid #0b3d2e;
    color: #0b3d2e;
}

.btn-fill {
    background: #0b3d2e;
    color: white;
}

.btn-dark {
    background: #222;
    color: white;
}

/* WELCOME BACK */
.welcome-back {
    font-size: 24px;
    text-align: center;
    margin: 20px 0;
    color: #0b3d2e;
    font-weight: bold;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: white;
}

.hero h1 {
    font-size: 36px;
}

.hero h2 {
    font-size: 28px;
    color: #33cc66;
    margin-bottom: 20px;
}

.hero-buttons button,
.hero-buttons a {
    margin: 5px;
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

/* VIDEO SECTION */
/* VIDEO SECTION - AJUSTADO */
.video-section {
    background: #f8f8f8;
    padding: 32px 16px;
}

.video-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.video-wrap {
    flex: 0 1 660px;
    display: flex;
    justify-content: center;
}

.video-section video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.video-text {
    flex: 0 1 360px;
}

.video-text h3 {
    font-size: 24px;
    color: #0b3d2e;
    margin-bottom: 8px;
}

.video-text p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .video-layout {
        flex-direction: column;
        text-align: center;
    }

    .video-text {
        max-width: 520px;
    }
}
/* LOGO SECTION */
.logo-section {
    text-align: center;
    padding: 50px 20px;
    background: white;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.center-logo {
    max-width: 200px;
}

.subtitle {
    font-size: 18px;
    color: #0b3d2e;
}

.subtitle span {
    color: #33cc66;
    font-weight: bold;
}

/* PROFILE MENU */
.profile-menu {
    position: relative;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.dropdown {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 6px;
    min-width: 180px;
}

.profile-menu:hover .dropdown {
    display: block;
}

.dropdown p {
    font-weight: bold;
    color: #0b3d2e;
}

.dropdown a {
    display: block;
    margin-top: 5px;
    text-decoration: none;
    color: #0b3d2e;
}

.dropdown a:hover {
    color: #33cc66;
}
