@charset "utf-8";
/* CSS Document */
/* ============================================
   O MUNDO DOS ANIMAIS - PET SHOP
   Folha de Estilos Principal
   ============================================ */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background: #ffffff;
    color: #333333;
    line-height: 1.6;
    font-size: 14px;
}

/* Container Principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TOP BAR - Barra Superior
   ============================================ */
.top-bar {
    background: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666666;
}

.language-selector select {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    color: #666666;
    font-family: 'Open Sans', sans-serif;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-links a:hover {
    color: #f5a623;
}

/* ============================================
   HEADER - Cabeçalho
   ============================================ */
.header {
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    background: #ffffff;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
}

.logo-text h1 {
    font-size: 22px;
    color: #333333;
    font-weight: 700;
    margin: 0;
}

.logo-text span {
    font-size: 14px;
    color: #666666;
    display: block;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555555;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: #f5a623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
}

/* Search and Cart */
.search-cart {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.search-box {
    display: flex;
    border: 1px solid #dddddd;
    border-radius: 4px;
    overflow: hidden;
    width: 300px;
}

.search-box input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

.search-box button {
    background: #ffffff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    color: #666666;
    font-size: 16px;
}

.cart-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f8f8;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    color: #333333;
    font-size: 14px;
    border: 1px solid #e5e5e5;
    transition: background 0.3s ease;
}

.cart-btn:hover {
    background: #f0f0f0;
}

.cart-icon {
    font-size: 20px;
}

.cart-count {
    background: #f5a623;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* ============================================
   NAVIGATION - Menu de Navegação
   ============================================ */
.nav-bar {
    background: #4a4a4a;
    padding: 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    font-size: 14px;
    transition: background 0.3s ease;
}

.nav-links a:hover {
    background: #f5a623;
}

/* ============================================
   HERO CAROUSEL - Banner Rotativo
   ============================================ */
.hero-carousel {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    cursor: pointer;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-dogs {
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
}

.slide-cats {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    width: 100%;
    padding: 0 50px;
}

.slide-text {
    color: #ffffff;
    flex: 1;
}

.slide-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.slide-text h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.slide-text p {
    font-size: 20px;
    opacity: 0.9;
}

.slide-image {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dog-illustration,
.cat-illustration {
    font-size: 200px;
    line-height: 1;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #ffffff;
}

/* ============================================
   PRODUCTS SECTION - Produtos
   ============================================ */
.products-section {
    padding: 50px 0;
    background: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    color: #333333;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header .underline {
    width: 60px;
    height: 4px;
    background: #f5a623;
    margin: 0 auto;
}

.section-header h3 {
    font-size: 20px;
    color: #666666;
    margin-top: 15px;
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.product-image {
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.product-info {
    padding: 15px;
}

.product-brand {
    color: #f5a623;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-name {
    font-size: 16px;
    color: #333333;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-price {
    font-size: 20px;
    color: #e74c3c;
    font-weight: 700;
}

.product-old-price {
    font-size: 14px;
    color: #999999;
    text-decoration: line-through;
    margin-left: 10px;
}

/* ============================================
   BRAND BANNERS - Banners de Marcas
   ============================================ */
.brand-banners {
    padding: 40px 0;
    background: #ffffff;
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.brand-banner {
    height: 200px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
}

.brand-banner:hover {
    transform: scale(1.02);
}

.banner-pedigree {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.banner-whiskas {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.banner-premier {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.brand-banner h3 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* ============================================
   FEATURES SECTION - Serviços
   ============================================ */
.features-section {
    background: #f9f9f9;
    padding: 50px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 40px;
    color: #555555;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 16px;
    color: #333333;
    text-transform: uppercase;
    font-weight: 700;
}

/* ============================================
   NEWSLETTER - Assinatura
   ============================================ */
.newsletter {
    background: #4a4a4a;
    padding: 40px 0;
}

.newsletter-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.newsletter-text h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 700;
}

.newsletter-text p {
    color: #aaaaaa;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    padding: 12px 20px;
    border: none;
    width: 300px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    outline: none;
}

.newsletter-form button {
    padding: 12px 30px;
    background: #f5a623;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.newsletter-form button:hover {
    background: #e09513;
}

/* ============================================
   FOOTER - Rodapé
   ============================================ */
.footer {
    background: #2c2c2c;
    color: #aaaaaa;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #f5a623;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: #f5a623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #aaaaaa;
}

.footer-bottom a {
    color: #f5a623;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.payment-icon {
    width: 49px;
    height: 28px;
    background: #444444;
    border-radius: 3px;
}

/* ============================================
   RESPONSIVE - Design Responsivo
   ============================================ */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        text-align: center;
    }

    .search-cart {
        align-items: center;
        width: 100%;
    }

    .search-box {
        width: 100%;
        max-width: 300px;
    }

    .slide-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .slide-text h2 {
        font-size: 32px;
    }

    .slide-text h3 {
        font-size: 20px;
    }

    .slide-image {
        width: 150px;
        height: 150px;
    }

    .dog-illustration,
    .cat-illustration {
        font-size: 100px;
    }

    .newsletter-inner {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        max-width: 300px;
    }

    .newsletter-form input {
        width: 100%;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
    }
}

@media (max-width: 480px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 10px;
    }

    .top-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .banners-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
