* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "europa", sans-serif;
    height: 100vh;
    overflow: hidden;
}

.container {
    height: 100vh;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
}

header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.logo {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.tagline {
    color: #2d5a3d;
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 15px;
    text-align: center;
    letter-spacing: 0.5px;
}

main.content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-info {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.email {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.email a,
.phone-number a {
    color: inherit;
    text-decoration: none;
    font-family: "europa", sans-serif;
    font-weight: 700;
}

.email a:hover,
.phone-number a:hover {
    text-decoration: underline;
}

.address {
    margin-bottom: 40px;
    font-style: normal;
}

.address p {
    font-size: 1.8rem;
    line-height: 1.4;
    font-family: "europa", sans-serif;
    font-weight: 700;
}

.phone {
    margin-top: 30px;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.phone-note {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Responsivo para tablets */
@media screen and (max-width: 1024px) {
    .logo {
        max-width: 500px;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .email {
        font-size: 1.6rem;
    }
    
    .address p {
        font-size: 1.5rem;
    }
    
    .phone-number {
        font-size: 1.8rem;
    }
}

/* Responsivo para smartphones */
@media screen and (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    .logo {
        max-width: 350px;
    }
    
    .tagline {
        font-size: 1rem;
        margin-top: 12px;
    }
    
    .email {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .address {
        margin-bottom: 30px;
    }
    
    .address p {
        font-size: 1.2rem;
    }
    
    .phone-number {
        font-size: 1.5rem;
    }
    
    .phone-note {
        font-size: 0.8rem;
    }
}

/* Responsivo para smartphones pequenos */
@media screen and (max-width: 480px) {
    .container {
        padding: 20px 10px;
    }
    
    .logo {
        max-width: 280px;
    }
    
    .tagline {
        font-size: 0.9rem;
        margin-top: 10px;
    }
    
    .email {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .address p {
        font-size: 1rem;
    }
    
    .phone-number {
        font-size: 1.3rem;
    }
    
    .phone-note {
        font-size: 0.75rem;
    }
}

/* Ajuste para telas muito pequenas em altura */
@media screen and (max-height: 600px) {
    .container {
        padding: 15px 10px;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .tagline {
        font-size: 0.85rem;
        margin-top: 8px;
    }
    
    .email {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .address {
        margin-bottom: 15px;
    }
    
    .address p {
        font-size: 0.9rem;
    }
    
    .phone {
        margin-top: 15px;
    }
    
    .phone-number {
        font-size: 1.1rem;
    }
}

/* Footer */
footer {
    width: 100%;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
}

.copyright {
    color: white;
    font-size: 0.85rem;
    font-weight: 300;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

/* Responsivo para tablets */
@media screen and (max-width: 1024px) {
    .copyright {
        font-size: 0.8rem;
    }
}

/* Responsivo para smartphones */
@media screen and (max-width: 768px) {
    footer {
        padding-bottom: 15px;
    }
    
    .copyright {
        font-size: 0.75rem;
    }
}

/* Responsivo para smartphones pequenos */
@media screen and (max-width: 480px) {
    .copyright {
        font-size: 0.7rem;
    }
}

/* Ajuste para telas muito pequenas em altura */
@media screen and (max-height: 600px) {
    footer {
        padding-bottom: 10px;
    }
    
    .copyright {
        font-size: 0.65rem;
    }
}