@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Chivo', sans-serif;
    background: #f2f2f2;
    color: #2b2b2b;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    background: #181717;
    z-index: 1000;
}

.nav-container {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Montserrat';
}

.logo img {
    width: 110px;
}

/* NAV */
.nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav a {
    color: #dcdcdc;
    text-decoration: none;
    font-weight: 500;
}

.nav a:hover {
    color: #ffffff;
}

/* MOBILE MENU */
#menu-toggle,
.menu-icon {
    display: none;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    background: url("images/photo-1736942145358-ff047387450b.jpg") center/cover no-repeat;
    position: relative;
    margin-top: 100px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 750px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

.hero h2 {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

/* FLECHA */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,100% { transform: translate(-50%,0); }
    50% { transform: translate(-50%,10px); }
}

/* ===== MANIFIESTO ===== */
.manifesto {
    background: #ffffff;
    padding: 120px 0;
}

.manifesto-box {
    padding: 60px;
    max-width: 900px;
    margin: auto;
    background-color: rgba(21, 21, 21);
}

.manifesto-box p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
    color: #ffffff;
}

/* ===== ABOUT ===== */
.about {
    background: #2b2b2b;
    color: #fff;
    padding: 140px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about h2 {
    font-size: 36px;
}

.about h3 {
    font-size: 18px;
    margin: 20px 0;
    font-weight: 400;
}

.about p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-image {
    background: url("images/lawyer.jpg") center/cover no-repeat;
    min-height: 420px;
}

/* ===== AREAS ===== */
.areas {
    position: relative;
    background: url("images/foto4.jpg") center/cover fixed no-repeat;
    padding: 160px 0;
}

.areas-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.areas-content {
    position: relative;
    color: #fff;
    text-align: center;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 60px;
}

.area-card {
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.3);
}

/* ===== CONTACT ===== */
.contact {
    background: #f2f2f2;
    padding: 140px 0;
}

.contact-box {
    background: #ffffff;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
}

.contact-form button {
    padding: 14px;
    background: #1f1f1f;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* ===== FOOTER ===== */
.footer {
    background: #1f1f1f;
    color: #aaa;
    text-align: center;
    padding: 40px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .about-grid,
    .areas-grid,
    .contact-box {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 42px;
    }
}
