@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    padding-top: 110px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    
}

.header-top {
    background-color: #2c3e50;
    color: white;
    padding: 10px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
}

.logo-portal {
    color: #884455;
}

/* Navegação */
.navigation {
    background-color: #34495e;
    padding: 0; 
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 14px;
    transition: background-color 0.3s;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    
}

.nav-link:hover,
.nav-link.active {
   background-color: #884455;
}

/*NAVBAR FIXA*/
.header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    margin-bottom: 5rem;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none; /* Hidden by default, shown on smaller screens */
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    z-index: 1001;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

/* Animation for hamburger menu */
.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #34495e;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 10px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        text-align: center;
        padding: 10px 0;
    }

    .hamburger-menu {
        display: flex;
    }

    .navigation .container {
        justify-content: space-between;
    }
}




/* Conteúdo Principal */
.main-content {
    padding: 30px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* Notícia Principal */
.featured-news {
    margin-bottom: 30px;
}

.featured-article {
    position: relative;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
}

.category {
    background-color: #884455;
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 10px;
     font-family: "Poppins", sans-serif;
     cursor: pointer;
}

.featured-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.featured-meta {
    font-size: 14px;
    opacity: 0.9;
}

/* Grid de Notícias */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  font-family: "Poppins", sans-serif;
}

.news-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 10px 5px 5px #979797;
}

.news-item img {
    width: 100%;
    /*height: ;*/
    object-fit: cover;
}

.news-content {
    padding: 15px;
}

.news-content .category {
    font-size: 10px;
    margin-bottom: 8px;
     font-family: "Poppins", sans-serif;
}

.news-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-meta {
    font-size: 15px;
    color: #000;
}

/* Secções */
.section-title {
    background-color: #884455;
    color: white;
    padding: 10px 15px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    text-align: center;
}
/* Barra Lateral */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
   box-shadow: 10px 5px 5px #979797;
}

.widget-title {
    background-color: #884455;
    color: white;
    padding: 15px;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

/* Publicidade */
.ad-banner {
    padding: 50px;
    text-align: center;
}

.ad-banner img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
}

.ad-text {
    margin-top: 10px;
}

.ad-text p {
    font-size: 12px;
    color: #000;
    font-weight: bold;
}

/* Últimas Notícias */
.latest-news {
    padding: 20px;
}

.latest-item {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ecf0f1;
}

.latest-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.latest-item img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.latest-content h4 {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.3;
}

.latest-meta {
    font-size: 12px;
    color: #7f8c8d;
}

/* Responsividade */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .sports-content,
    .travel-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        flex-wrap: wrap;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .header-top .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/*A parte do codigo para a parte de comentarios dos clientes*/
.testimonials-section {
    background: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
  }
  

  .testimonials-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
  }

  .carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto 40px;
  }

  .testimonial {
    display: none;
    transition: opacity 0.5s ease-in-out;
  }

  .testimonial.active {
    display: block;
  }

  .testimonial p {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .testimonial .stars {
    color: gold;
    font-size: 20px;
    margin-bottom: 5px;
  }

  .testimonial span {
    font-style: italic;
    color: #555;
  }

  .review-form textarea {
    width: 100%;
    max-width: 500px;
    height: 100px;
    margin-top: 20px;
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    resize: none;
  }

  .review-form button {
    padding: 10px 25px;
    background-color: #884455;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
  }

 /*  SECÇÃO DE SUBSCRIÇÃO */
.subscription-section {
    padding: 60px 0;
    margin-top: 40px;
    font-family: "Poppins", sans-serif;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #000;
    font-weight: 600;
    margin-bottom: 50px;
}

.subscription-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* FORMULÁRIO DE SUBSCRIÇÃO */
.subscription-form-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.subscription-form-container h3 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #884455;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.price-display {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
    display: none;
}

.price-display.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.price-label {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.price-value {
    font-size: 24px;
    font-weight: bold;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    outline: none;
    margin-bottom: 10px;
}

.submit-btn a{
    text-decoration: none;
    color: #fff;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/*  TABELA DE PREÇOS  */
.pricing-table-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-table-container h3 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 10px;
}

.pricing-table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.pricing-header {
    background: #884455;
    color: white;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 15px;
    border-bottom: 1px solid #ecf0f1;
    transition: background-color 0.3s ease;
}

.pricing-row:hover {
    background-color: #f8f9fa;
}

.pricing-row.featured {
    background: #884455;
    color: white;
    font-weight: bold;
}

.pricing-row.featured:hover {
    background: #ad445e;
}

.pricing-col {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-row.featured .pricing-col i {
    color: white;
}

.pricing-col small {
    display: block;
    font-size: 11px;
    opacity: 0.8;
}

.price {
    font-weight: bold;
    font-size: 16px;
    color: #e74c3c;
}

.pricing-row.featured .price {
    color: white;
}

/*  PLATAFORMAS MÓVEIS */
.mobile-platforms {
    margin-top: 25px;
}

.mobile-platforms h4 {
    color: #000;
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.platform-item {
    background: #c0392b;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.platform-item:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.3);
}

.platform-item i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.platform-item span {
    font-weight: bold;
    font-size: 14px;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVIDADE */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .subscription-content {
        gap: 30px;
        max-height: none;
    }
    
    .subscription-form-container,
    .pricing-table-container {
        max-height: none;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
}

/* Tablets pequenos e smartphones grandes (481px - 768px) */
@media (max-width: 768px) {
    .subscription-content {
        grid-template-columns: 1fr;
        gap: 30px;
        max-height: none;
    }
    
    .subscription-form-container,
    .pricing-table-container {
        max-height: none;
        padding: 25px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .pricing-header,
    .pricing-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        padding: 12px;
        font-size: 13px;
    }
    
    .pricing-col {
        gap: 5px;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .platform-item {
        padding: 12px;
    }
    
    .platform-item i {
        font-size: 20px;
    }
    
    .platform-item span {
        font-size: 12px;
    }
}

/* Smartphones (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .subscription-section {
        padding: 40px 0;
        margin-top: 20px;
    }
    
    .subscription-form-container,
    .pricing-table-container {
        padding: 20px;
        border-radius: 10px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .subscription-form-container h3,
    .pricing-table-container h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .pricing-header,
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
        text-align: center;
    }
    
    .pricing-header {
        display: none; /* Esconder cabeçalho em mobile muito pequeno */
    }
    
    .pricing-row {
        border: 1px solid #ecf0f1;
        border-radius: 8px;
        margin-bottom: 10px;
        display: block;
        padding: 15px;
    }
    
    .pricing-col {
        justify-content: center;
        margin-bottom: 8px;
        display: block;
        text-align: center;
    }
    
    .pricing-col:last-child {
        margin-bottom: 0;
    }
    
    .price {
        font-size: 18px;
        display: block;
        margin-top: 5px;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .platform-item {
        padding: 15px;
    }
    
    .mobile-platforms h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

/* Smartphones muito pequenos (até 320px) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .subscription-form-container,
    .pricing-table-container {
        padding: 15px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group select {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .submit-btn {
        padding: 10px;
        font-size: 13px;
    }
}

/*FOOTER*/
.footer {
    background: #2c3e50 ;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.footer-container {
    
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: 4rem 2rem 2rem;
}

/* Secções do Footer */
.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

.footer-section.about {
    grid-column: span 1;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ac294a, #fff);
    border-radius: 2px;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #b8c5d6;
}

/* Informações de Contacto */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #b8c5d6;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #ffffff;
}

.contact-item i {
    font-size: 1.1rem;
    margin-top: 0.1rem;
    min-width: 16px;
}

/* Links do Footer */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
}

.footer-links li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links li a i {
    color: #4ecdc4;
    font-size: 0.9rem;
    min-width: 16px;
}

/* Newsletter */
.newsletter-description {
    font-size: 0.95rem;
    color: #b8c5d6;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form {
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group input {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.input-group input::placeholder {
    color: #b8c5d6;
}

.input-group input:focus {
    outline: none;
    border-color: #884455;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.input-group button {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #884455, #0077b5);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.input-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.input-group button:active {
    transform: translateY(0);
}

/* Redes Sociais */
.social-section {
    margin-top: 1.5rem;
}

.social-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: -1;
}

.social-link.facebook::before {
    background: #3b5998;
}

.social-link.twitter::before {
    background: #1da1f2;
}

.social-link.instagram::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.linkedin::before {
    background: #0077b5;
}

.social-link.youtube::before {
    background: #ff0000;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link i {
    font-size: 1.2rem;
    z-index: 1;
}


/* Footer Bottom */
.footer-bottom {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.copyright p {
    color: #b8c5d6;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Seta Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background:  #884455;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .input-group {
        gap: 0.75rem;
    }
    
    .input-group input,
    .input-group button {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-divider {
        margin: 1.5rem 1.5rem 0;
    }
    
    .footer-bottom {
        padding: 1.5rem;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 2.5rem 1rem 1.5rem;
        gap: 2rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-description,
    .newsletter-description {
        font-size: 0.9rem;
    }
    
    .contact-item,
    .footer-links li a {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 1.1rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Melhorias para acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}