:root {
    --primary: #b6aa5e;
    --dark: #1a1a1a;
    --light: #e0e0e0;
    --gradient: linear-gradient(90deg, transparent, var(--primary), transparent);
}
body {
    background-color: var(--dark);
    color: var(--light);
    font-family: 'Poppins', sans-serif;
}
.navbar {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(182, 170, 94, 0.1);
}
.navbar-brand img {
    transition: transform 0.3s ease;
}
.navbar-brand:hover img {
    transform: scale(1.1);
}
.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    color: var(--light) !important;
    font-weight: 400;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--primary) !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
    left: 0;
}
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}
.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}
.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}
.navbar-toggler-icon::before {
    transform: translateY(-8px);
}
.navbar-toggler-icon::after {
    transform: translateY(8px);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
}
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('./src/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
}
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}
.logo-placeholder {
    margin-bottom: 2.5rem;
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(182, 170, 94, 0.3));
}
.hero-title {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}
.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient);
}
.hero-description {
    font-size: 1.4rem;
    color: var(--light);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1.2rem;
    }
    .logo-placeholder {
        width: 100px;
    }
}
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient);
}
.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}
.about-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light);
}
.about-highlight {
    padding: 60px 0;
    position: relative;
}
.about-highlight:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}
.about-highlight-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.about-highlight-content.reverse {
    flex-direction: row-reverse;
}
.about-highlight-text {
    flex: 1.2;
}
.about-highlight-image {
    flex: 0.8;
    position: relative;
}
.about-highlight-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.about-highlight-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    z-index: -1;
}
@media (max-width: 991px) {
    .about-highlight-content {
        flex-direction: column;
        gap: 2rem;
    }
    .about-highlight-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        height: 300px;
        margin: 0 auto;
    }
}
.about-highlight h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.about-highlight p {
    color: var(--light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
@media (max-width: 991px) {
    .about-highlight-content {
        flex-direction: column-reverse !important;
        gap: 2rem;
    }
    .about-highlight-image::before {
        display: none;
    }
    .about-highlight-image img {
        height: 250px;
    }
}
.stats-section {
    padding: 80px 0;
    background: linear-gradient(165deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient);
}
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}
.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}
.stat-icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(182, 170, 94, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.stat-label {
    color: var(--light);
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}
.stat-card:hover .stat-icon::after {
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
}
.services-section {
    background-color: #1a1a1a;
    padding: 80px 0;
    position: relative;
}
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b6aa5e, transparent);
}
.service-item {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}
.service-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}
.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #b6aa5e;
    transition: all 0.3s ease;
}
.service-item:hover::before {
    width: 5px;
}
.service-icon {
    font-size: 2.5rem;
    color: #b6aa5e;
    margin-bottom: 1.5rem;
}
.service-title {
    color: #b6aa5e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.service-description {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
}
.service-item .learn-more {
    color: #b6aa5e;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.service-item:hover .learn-more {
    opacity: 1;
    transform: translateY(0);
}
.learn-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}
.service-item:hover .learn-more i {
    transform: translateX(5px);
}
@media (max-width: 768px) {
    .services-section {
        padding: 40px 0;
    }
    .service-item {
        margin-bottom: 1rem;
    }
}
.quem-somos-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}
.whatsapp-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.whatsapp-button:hover {
    background-color: #20ba57;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.whatsapp-button .icon {
    font-size: 1.4rem;
    margin-right: 10px;
    vertical-align: middle;
}
.contact-section {
    background: linear-gradient(165deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient);
}
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.contact-title {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.contact-description {
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}
.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    gap: 10px;
}
.contact-button:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
}
.contact-button i {
    font-size: 1.3rem;
}
.contact-info {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--light);
    white-space: nowrap;
}
.contact-item i {
    color: var(--primary);
    font-size: 1.5rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}
.contact-item span {
    font-size: 1rem;
}
@media (max-width: 1200px) {
    .contact-info {
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .contact-title {
        font-size: 2rem;
    }
}
.benefits-section {
    padding: 100px 0;
    position: relative;
    background: var(--dark);
}
.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient);
}
.benefit-card {
    background: linear-gradient(165deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-5px);
}
.benefit-icon-wrapper {
    margin-bottom: 1.5rem;
    width: 70px;
    height: 70px;
    background: rgba(182, 170, 94, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.benefit-card:hover .benefit-icon-wrapper {
    background: var(--primary);
}
.benefit-icon {
    font-size: 2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}
.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    color: var(--dark);
}
.benefit-title {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.benefit-text {
    color: var(--light);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}
@media (max-width: 991px) {
    .benefit-card {
        padding: 1.5rem;
        margin-top: 35px;
    }
    .benefit-icon-wrapper {
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .benefit-content {
        padding-top: 30px;
    }
    .benefit-icon {
        font-size: 1.2rem;
    }
}
.footer {
    background: var(--dark);
    padding: 2rem 0;
    position: relative;
    border-top: 1px solid rgba(182, 170, 94, 0.1);
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient);
    opacity: 0.3;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-logo img {
    height: 40px;
    width: auto;
}
.footer-logo-text {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}
.footer-text {
    color: var(--light);
    opacity: 0.7;
    margin: 0;
    font-size: 0.9rem;
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    color: var(--light);
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .footer-logo {
        justify-content: center;
    }
}