* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a3d6b 0%, #2c5f8e 100%);
    background-image: url('assets/banner-principal.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-left {
    flex: 1;
    max-width: 650px;
    padding-right: 40px;
}

.company-logo {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-bottom: 70px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.company-name {
    z-index: 0;
    opacity: 0;
    position: absolute;
    font-size: 2.5rem;
    font-weight: 700;
    color: #b29443;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
    color: white;
}

.highlight {
    color: #b29443;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    background: #b29443;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(244, 208, 63, 0.3);
}

.contact-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-weight: 600;
    color: #b29443;
    font-size: 1.125rem;
    margin-bottom: 2px;
    text-align: start;
}

.contact-value {
    color: white;
    font-size: 1rem;
}

a.contact-value {
    text-decoration: none;
    color: inherit;
}

.fade-hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    margin: 30px 0;
    opacity: 1;
}

.services {
    margin-bottom: 40px;
}

.services h3,
.business-consulting h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
}

.service-card,
.consulting-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background-color: rgba(249, 249, 249, 0.122);
    padding: 20px;
    border-radius: 11px;
    border: 1px solid white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0px 37px 35.42px 10.58px rgba(11, 8, 11, 0.27);
    text-decoration: none;
}

.service-card:hover,
.consulting-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(244, 208, 63, 0.4);
    transform: translateY(-1px);
}

.service-bullet {
    width: 15px;
    height: 15px;
    background: #b29443;
    border-radius: 50%;
    flex-shrink: 0;
    position: absolute;
    left: -7px;
    top: 41%;
}

.service-content {
    margin-left: 0;
}

.service-content h4 {
    font-weight: 600;
    color: white;
    margin-bottom: 0px;
    font-size: 1.1rem;
}

.service-content p,
.consulting-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 0.95rem;
}

.business-consulting {
    margin-top: 40px;
}

.consulting-content {
    margin-left: 15px;
}

.geometric-shapes {
    position: relative;
    width: 300px;
    height: 300px;
}

.circle-outline {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid rgba(244, 208, 63, 0.3);
    border-radius: 50%;
    top: 50px;
    left: 50px;
}

.plus-sign {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
}

.plus-sign::before,
.plus-sign::after {
    content: '';
    position: absolute;
    background: rgba(244, 208, 63, 0.4);
}

.plus-sign::before {
    width: 40px;
    height: 4px;
    top: 18px;
    left: 0;
}

.plus-sign::after {
    width: 4px;
    height: 40px;
    top: 0;
    left: 18px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-left {
        max-width: 600px;
        padding-right: 20px;
    }

    .hero-text h2 {
        font-size: 1.9rem;
    }
}

@media (max-width: 968px) {
    body {
        background-position: center;
        background-attachment: scroll;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
        padding-right: 0;
    }

    .geometric-shapes {
        display: none;
    }

    .company-logo {
        margin: 0 auto 20px auto;
    }

    .hero-text h2 {
        font-size: 1.7rem;
    }

    .service-card,
    .consulting-card {
        text-align: left;
    }

    .contact-info {
        max-width: fit-content;
        margin: auto;
    }

    .hidden {
        display: none;
    }

    .logo-marcasite img {
        position: unset !important;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .service-card,
    .consulting-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .service-bullet {
        margin: 0 auto 10px auto;
    }

    .service-content,
    .consulting-content {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 1.3rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .services h3,
    .business-consulting h3 {
        font-size: 1.3rem;
    }

    .service-content h4 {
        font-size: 1rem;

        .service-content p,
        .consulting-content p {
            font-size: 0.9rem;
        }
    }

    .service-content p,
    .consulting-content p {
        font-size: 0.9rem;
    }
}

.logo-marcasite img {
    width: 100%;
    max-width: 250px;
    position: fixed;
    bottom: 20px;
    right: 12px;
}

.whatsapp img {
    position: fixed;
    z-index: 8;
    bottom: 86px;
    right: 12px;
    width: 50px;
    height: 50px;
    opacity: 0.7;
    transition: ease .8s all;
}

.whatsapp a:hover img {
    opacity: 1;
    filter: drop-shadow(0px 0px 6px black);
}