* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #000000;
    line-height: 1.6;
}

.logo-gato {
    justify-content: center;
    height: 150px;
    margin-bottom: 20px;
    justify-content: center;
}

/* ===============================
   HEADER
=================================*/
header {
    background-color: #ffb300;
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(255, 179, 0, 0.601);
    animation: fadeInDown 1s ease;
    transition: all 0.4s ease-in-out;
}

header .logo img {
    max-height: 80px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff0000;
}

/* ===============================
   MAIN CONTENT
=================================*/
main {
    display: flex;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.main-news {
    flex: 3;
}

.main-news .highlight {
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease;
}

.main-news img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.main-news img:hover {
    transform: scale(1.01);
}

.secondary-news {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.secondary-news article {
    flex: 1 1 45%;
    background-color: #ffb300;
    padding: 15px;
    border-radius: 8px;
    animation: fadeInUp 1.2s ease;
}

.secondary-news img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.secondary-news img:hover {
    transform: scale(1.02);
}

aside {
    flex: 1;
    background-color: #ffb300;
    padding: 25px;
    border-radius: 8px;
    animation: fadeInRight 1.2s ease;
}

aside h2 {
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

footer {
    background-color: #ffb300;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    box-shadow: 0 -4px 8px rgba(255, 179, 0, 0.601);
    animation: fadeInUp 1s ease;
}

/* ===============================
   CONTACT FORM
=================================*/
.contact-info {
    flex: 3;
    padding-right: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    animation: fadeInUp 1s ease;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
}

.contact-form button {
    background-color: #ff0000;
    color: #fff;
    padding: 10px;
    border: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #cc0000;
}

.map iframe {
    width: 100%;
    max-width: 600px;
    height: 300px;
    border: none;
    border-radius: 8px;
    animation: fadeInUp 1s ease;
}

/* ===============================
   ANIMATIONS
=================================*/
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===============================
   MEDIA QUERIES
=================================*/

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    main {
        flex-direction: column;
    }
    aside {
        margin-left: 0;
    }
}

/* Tablets (portrait) */
@media (max-width: 992px) {
    header {
        padding: 15px 10px;
    }
    header .logo img {
        max-height: 60px;
    }
    nav ul {
        flex-wrap: wrap;
        gap: 10px;
    }
}