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

body {
    background: #e9f1f7;
    font-family: 'Cormorant Garamond', serif;
    color: #122944;
}

/* ---------- NAVBAR ---------- */
.nav-header {
    width: 100%;
    height: 120px;
    background: url("../img/hero-antartida.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.nav-logo {
    width: 80px;
    transition: transform .3s ease;
}

.logo-animated:active {
    transform: rotate(360deg);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-btn {
    color: #00000;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-decoration: none;
}

/* ---------- HERO ---------- */
.hero {
    text-align: center;
    padding: 40px 20px 10px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 4px;
}

.hero-subtitle {
    font-size: 1.7rem;
    font-style: italic;
    color: #345d85;
}

/* ---------- DOMO ---------- */
.domo-wrapper {
    margin-top: 0px;
    display: flex;
    justify-content: center;
}

.domo-mask {
    width: 80%;
    max-width: 480px;
    height: 260px;
    border: 6px solid white;
    border-bottom: none;
    border-radius: 300px 300px 0 0;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.domo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* ---------- TARJETAS ---------- */
.content {
    padding: 20px;
}

.info-card {
    background: white;
    padding: 30px;
    margin: 25px 0;
    border-radius: 20px;
    border: 3px solid #f2c273;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.info-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 1.3rem;
    line-height: 1.7;
}