 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Inter', sans-serif;
 }

 body {
     background: #ffffff;
     color: #111;
     overflow-x: hidden;
 }

 /* NAV */
 header {
     position: fixed;
     top: 0;
     width: 100%;
     background: #ffffff;
     border-bottom: 1px solid #eee;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 18px 8%;
     z-index: 1000;
 }

 .logo {
     font-weight: 700;
     letter-spacing: 1px;
     color: #111;
 }

 .logo span {
     color: #c9a227;
     /* dorado elegante */
 }

 nav a {
     margin-left: 20px;
     text-decoration: none;
     color: #111;
     font-size: 14px;
     transition: .3s;
 }

 nav a:hover {
     color: #c9a227;
 }
 
 .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #111;
}

/* Responsive */
@media (max-width: 768px) {

    header {
        padding: 15px 20px;
    }

    .logo {
        font-size: 18px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #eee;
        display: none;
        flex-direction: column;
        padding: 15px 0;
        box-shadow: 0 5px 20px rgba(0,0,0,.08);
    }

    nav.active {
        display: flex;
    }

    nav a {
        margin: 0;
        padding: 15px 20px;
        border-bottom: 1px solid #f3f3f3;
    }

    nav a:last-child {
        border-bottom: none;
    }
}

 .hero {
     position: relative;
     height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: white;

     background:
         linear-gradient(rgba(0, 0, 0, 0.847),
             rgba(0, 0, 0, 0.659)),
         url('../img/hero.png');

     background-size: cover;
     background-position: center;
     background-attachment: fixed;

     overflow: hidden;
 }

 .hero::before {
     content: "";
     position: absolute;
     inset: 0;
     background:
         radial-gradient(circle at center,
             rgba(201, 162, 39, .15),
             transparent 60%);
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 900px;
 }

 .hero-subtitle {
     letter-spacing: 5px;
     text-transform: uppercase;
     color: #c9a227;
     margin-bottom: 15px;
     font-size: 14px;
 }

 .hero h1 {
     font-size: 72px;
     font-weight: 700;
     line-height: 1.1;
     margin-bottom: 20px;
     color: #fff;
 }

 .hero p {
     color: #ddd;
     font-size: 20px;
     max-width: 700px;
     margin: auto;
 }

 .hero-buttons {
     margin-top: 35px;
     display: flex;
     justify-content: center;
     gap: 15px;
     flex-wrap: wrap;
 }

 .btn-primary {
     background: #c9a227;
     color: #fff;
     padding: 15px 30px;
     border-radius: 50px;
     text-decoration: none;
     transition: .4s;
 }

 .btn-primary:hover {
     transform: translateY(-3px);
 }

 .btn-secondary {
     border: 1px solid rgba(255, 255, 255, .4);
     color: #fff;
     padding: 15px 30px;
     border-radius: 50px;
     text-decoration: none;
     backdrop-filter: blur(10px);
 }

 .scroll-indicator {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     color: white;
     animation: float 2s infinite;
 }

 @keyframes float {
     50% {
         transform: translateX(-50%) translateY(10px);
     }
 }

 @media(max-width:768px) {

     .hero {
         background-attachment: scroll;
     }

     .hero h1 {
         font-size: 42px;
     }

     .hero p {
         font-size: 16px;
     }
 }

 .btn {
     display: inline-block;
     margin-top: 25px;
     padding: 12px 25px;
     background: #111;
     color: #fff;
     border-radius: 8px;
     text-decoration: none;
     transition: .3s;
 }

 .btn:hover {
     background: #c9a227;
     color: #111;
 }

 /* SECTIONS */
 section {
     padding: 80px 8%;
 }

 .title {
     text-align: center;
     font-size: 30px;
     margin-bottom: 40px;
     font-weight: 700;
 }

 .title span {
     color: #c9a227;
 }

 /* CARDS */
 .grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
     gap: 20px;
 }

 .card {
     background: #fff;
     border: 1px solid #eee;
     padding: 25px;
     border-radius: 12px;
     transition: .3s;
 }

 .card:hover {
     transform: translateY(-6px);
     border-color: #c9a227;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
 }

 .card h3 {
     margin-bottom: 10px;
 }

 .card p {
     color: #666;
     font-size: 14px;
     line-height: 1.6;
 }

 .about{
    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.about img{
    width:100%;
    max-width:500px;
    border-radius:15px;
    object-fit:cover;
}

.about-text{
    flex:1;
}

.about-subtitle{
    display:block;
    color:#c9a227;
    font-size:13px;
    font-weight:600;
    letter-spacing:3px;
    margin-bottom:15px;
}

.about-text h3{
    font-size:38px;
    margin-bottom:20px;
    line-height:1.2;
    color:#111;
}

.about-text p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
    text-align:justify;
}

.btn-about{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    padding:14px 28px;
    background:#111;
    color:#fff;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.btn-about:hover{
    background:#c9a227;
    transform:translateY(-3px);
}

@media(max-width:768px){

    .about-text h3{
        font-size:28px;
    }

}

 .contact-section{
    padding:100px 8%;
    text-align:center;
    background:#f8f8f8;
}

.contact-container{
    max-width:700px;
    margin:auto;
}

.contact-subtitle{
    color:#b88a44;
    font-weight:600;
    letter-spacing:2px;
}

.contact-container h2{
    font-size:42px;
    margin:15px 0;
}

.contact-container p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 35px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    font-size:18px;
    transition:.3s;
}

.whatsapp-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(37,211,102,.3);
}

.footer {
    background: #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 40px;
   justify-content: center;
}

.footer h3 {
    color: #c9a227;
    font-size: 32px;
    margin-bottom: 15px;
}

.footer h4 {
    color: #111;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer p {
    color: #666;
    line-height: 1.8;
}

.footer a {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 10px;
    transition: .3s;
}

.footer a:hover {
    color: #c9a227;
}

.footer-bottom {
    border-top: 1px solid #e5e5e5;
    text-align: center;
    padding: 25px 20px;
}

.footer-bottom p {
    color: #777;
    margin: 5px 0;
}

.footer-bottom a {
    display: inline;
    color: #c9a227;
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

 /* ANIM */
 @keyframes fade {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* MOBILE */
 @media(max-width:768px) {
     .hero h1 {
         font-size: 32px;
     }

     nav {
         display: none;
     }
 }

 .team-section{
    padding:100px 8%;
    background:#fafafa;
}

.team-header{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:60px;
}

.team-header span{
    color:#c9a227;
    letter-spacing:3px;
    font-size:13px;
    font-weight:600;
}

.team-header h2{
    font-size:42px;
    margin:15px 0;
    color:#111;
}

.team-header p{
    color:#666;
    line-height:1.8;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.team-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.team-card:hover{
    transform:translateY(-10px);
}

.team-card img{
    width:100%;
    height:380px;
    object-fit:cover;
}

.team-info{
    padding:25px;
}

.team-info h3{
    font-size:24px;
    color:#111;
    margin-bottom:8px;
}

.team-info span{
    color:#c9a227;
    font-weight:600;
}

.team-info p{
    margin-top:15px;
    color:#666;
    line-height:1.7;
}

@media(max-width:768px){

    .team-header h2{
        font-size:32px;
    }

    .team-card img{
        height:300px;
    }

}