/* Estilos gerais */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: url('https://apoloatacado.com.br/backdives.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Estilizando o card */
.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    width: 90%; /* Mantém o card flexível para dispositivos menores */
    margin: auto;
    animation: slideDown 1s ease forwards;
}

/* Estilos do conteúdo */
h1 {
    font-size: 3em;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #2c7506, #53733a, #ef9b00);
    -webkit-background-clip: text;
    color: transparent;
    animation: fadeIn 1.5s ease-in-out;
}

p {
    font-size: 1.5em;
    line-height: 2;
    color: #555;
    margin-bottom: 15px;
}

.address {
    font-weight: bold;
    color: #ff6f61;
    margin-bottom: 20px;
    font-size: 1.5em;
    animation: fadeInUp 1.5s ease-in-out 0.5s backwards;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.address:hover {
    transform: scale(1.05);
    color: #e84118;
}

/* Botão de ação */
.cta {
    margin-top: 30px;
}

.btn {
    background-color: #78e08f;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.8em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #38ada9;
    transform: scale(1.05);
}

/* Animações */
@keyframes slideDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    .btn {
        font-size: 1.4em;
        padding: 10px 20px;
    }
    .container {
        padding: 40px;
        max-width: 600px; /* Tamanho ajustado para iPhone SE */
    }
}

@media (max-width: 375px) {
    .container {
        padding: 30px;
    }
    h1 {
        font-size: 2em;
    }
    p {
        font-size: 1.2em;
    }
    .address {
        font-size: 1.3em;
    }
    .btn {
        font-size: 1.2em;
        padding: 10px 15px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 80px;
        max-width: 1200px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 1600px;
    }
}

/* Estilos temáticos de Safari */
.animal-icon {
    width: 70px;
    height: 70px;
    margin: 10px;
    display: inline-block;
}

.safari-icons {
    margin-top: 20px;
    animation: fadeIn 2s ease;
}

/* Integração da logo */
.logo {
    width: 200px;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
