* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #5DADE2 0%, #3498DB 100%);
    background-image: url('assets/Banner de fundo.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%;
    max-width: 1280px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-left {
    flex: 1;
    max-width: 650px;
    padding-right: 40px;
}

.hero-text {
    display: flex;
    flex-direction: column;
}

.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-logo {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin-bottom: 10px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.hero-text h2 {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
    color: white;
    max-width: 450px;
}

.highlight-bold {
    color: white;
    font-weight: 600;
}

.text-normal {
    color: white;
    font-weight: 400;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 410px;
}

.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: 25px 0;
    opacity: 1;
    max-width: 280px;
}

.whatsapp-info {
    margin-bottom: 10px;
}

.whatsapp-info p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.phone-numbers {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
    gap: 10px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    background: #EA2128;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.phone-link:hover {
    background: #d50b12;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    filter: brightness(0) invert(1);
}

.signature-image {
    max-width: 200px;
    height: auto;
    margin-top: 20px;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 4px rgba(0, 0, 0, 0.6));
}

.logo-marcasite img {
    width: 100%;
    max-width: 250px;
    position: fixed;
    bottom: 20px;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 4px rgba(0, 0, 0, 0.6));
    right: 12px;
}









/* 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-image: url('assets/Banner de fundo mobile.png');
        background-position: center;
        background-attachment: scroll;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
        padding-right: 0;
    }

    .company-logo {
        max-width: 300px;
        margin: auto;
    }

    .hero-text h2 {
        font-size: 1.7rem;
    }

    .signature-image {
        max-width: 150px;
        margin: auto;
    }

    .hidden {
        display: none;
    }

    .logo-marcasite img {
        position: unset !important;
        margin-top: 50px;
    }

    .phone-numbers {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .phone-link {
        font-size: 1rem;
        padding: 10px 16px;
    }

    .signature-image {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 1.3rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .company-logo {
        max-width: 250px;
    }

    .phone-link {
        font-size: 0.9rem;
        padding: 8px 14px;
    }

    .signature-image {
        max-width: 100px;
    }
}

.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);
}