@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

/* Global box-sizing for consistent box model */
* {
    box-sizing: border-box;
}

/* Base styles for both desktop and mobile */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

/* Desktop styles (default) */
.web-container {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.left-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.right-half {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.adaltotips-name {
    font-size: 4em;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 900;
}

.web-main-image {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hide mobile container by default (desktop) */
.mobile-container {
    display: none;
}

/* General styles for h1, p, btn (will be overridden by mobile styles in media query if applicable) */
h1 {
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 10px;
    color: #00f305; /* Cor verde para o título */
}

p {
    font-size: 1.1em;
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg,#089702, #00E676); /* Gradiente para o botão */
    color: #000; /* Texto preto no botão */
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 900; /* Aumenta o peso da fonte */
    border-radius: 5px;
    margin-top: 20px;
    font-size: 1.5em; /* Aumenta o tamanho da fonte */
    text-transform: uppercase;
    animation: pulse 2s infinite; /* Efeito de pulse */
}

.btn:hover {
    background: linear-gradient(45deg, #00E676, #00C853); /* Inverte o gradiente no hover */
}

/* Animação de pulse */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(0, 230, 118, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .web-container {
        display: none; /* Hide desktop layout on mobile */
    }

    .mobile-container {
        display: flex; /* Show mobile container */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        padding: 10px; /* Reduced padding */
        width: 100%; /* Use full width */
        margin: 0 auto; /* Center the container */
    }

    .mobile-main-image {
        width: 100%;
        height: auto;
    }

    h1 {
        line-height: 1.2;
        word-break: break-word; /* Break long words */
    }

    p {
        font-size: 1em;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .mobile-text-below-button {
        font-size: 0.9em;
        color: #ccc;
        margin-top: 5px;
    }
}
