/*
Theme Name: Tropa Bully
Theme URI: https://tropabully.com.br
Author: Manus
Description: Tema personalizado para o site Tropa Bully, especializado em American Bully de alto padrão.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tropabully
Tags: american-bully, canil, dogs, responsive, custom-menu, featured-images
*/

/* Variáveis de cores */
:root {
    --primary-color: #ff8c00;
    --secondary-color: #222;
    --accent-color: #d4af37;
    --light-color: #f8f8f8;
    --dark-color: #111;
    --gray-color: #777;
    --light-gray: #eee;
    --white: #fff;
    --black: #000;
}

/* Reset e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

p {
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--dark-color);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header */
.site-header {
    background-color: var(--secondary-color);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.site-logo {
    max-width: 180px;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-navigation ul li {
    position: relative;
}

.main-navigation ul li a {
    display: block;
    padding: 10px 15px;
    color: var(--white);
    font-weight: 600;
}

.main-navigation ul li a:hover {
    color: var(--primary-color);
}

.main-navigation ul li.current-menu-item a {
    color: var(--primary-color);
}

/* Submenu */
.main-navigation ul li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-color);
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block;
}

.main-navigation ul li:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul li ul.sub-menu li {
    width: 100%;
}

.main-navigation ul li ul.sub-menu li a {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 60px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Seções */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Sobre o Canil */
.about-section {
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 0 0 50%;
    padding: 15px;
}

.about-text {
    flex: 0 0 50%;
    padding: 15px;
}

.about-text h3 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature-item {
    flex: 0 0 50%;
    padding: 15px;
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.feature-text h4 {
    margin-bottom: 10px;
}

/* Plantel */
.plantel-section {
    background-color: var(--light-color);
}

.plantel-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.plantel-tab {
    padding: 15px 30px;
    background-color: var(--white);
    color: var(--secondary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin: 0 5px;
}

.plantel-tab.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.plantel-content {
    display: none;
}

.plantel-content.active {
    display: block;
}

.dogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dog-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.dog-image {
    height: 250px;
    overflow: hidden;
}

.dog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.dog-card:hover .dog-image img {
    transform: scale(1.1);
}

.dog-info {
    padding: 20px;
}

.dog-info h3 {
    margin-bottom: 10px;
}

.dog-info p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.dog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.dog-meta span {
    display: flex;
    align-items: center;
    color: var(--gray-color);
    font-size: 14px;
}

.dog-meta span i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Filhotes */
.filhotes-section {
    background-color: var(--white);
}

.filhotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.filhote-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.filhote-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.filhote-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.filhote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.filhote-card:hover .filhote-image img {
    transform: scale(1.1);
}

.filhote-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.filhote-info {
    padding: 20px;
}

.filhote-info h3 {
    margin-bottom: 10px;
}

.filhote-info p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.filhote-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.filhote-meta span {
    display: flex;
    align-items: center;
    color: var(--gray-color);
    font-size: 14px;
}

.filhote-meta span i {
    margin-right: 5px;
    color: var(--primary-color);
}

.filhote-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Depoimentos */
.testimonials-section {
    background-color: var(--light-color);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 50px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
}

.testimonial-text::before {
    top: -20px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-title {
    color: var(--gray-color);
    font-size: 14px;
}

/* Blog */
.blog-section {
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    margin-bottom: 10px;
}

.blog-content p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    color: var(--gray-color);
    font-size: 14px;
}

.blog-meta span i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Contato */
.contact-section {
    background-color: var(--light-color);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
}

.contact-info {
    flex: 0 0 40%;
    padding: 15px;
}

.contact-form {
    flex: 0 0 60%;
    padding: 15px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.contact-text h4 {
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.contact-social {
    display: flex;
    margin-top: 30px;
}

.contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* Footer */
.site-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-widget {
    flex: 1;
    padding: 0 15px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-widget p {
    color: var(--light-gray);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: var(--light-gray);
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    background-color: var(--dark-color);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--light-gray);
    margin: 0;
    font-size: 14px;
}

/* Página de Detalhes do Cão */
.dog-details {
    padding: 100px 0;
    margin-top: 80px;
}

.dog-details-container {
    display: flex;
    flex-wrap: wrap;
}

.dog-gallery {
    flex: 0 0 60%;
    padding: 15px;
}

.dog-info-sidebar {
    flex: 0 0 40%;
    padding: 15px;
}

.main-image {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: auto;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumb {
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.thumb:hover img {
    transform: scale(1.1);
}

.dog-info-box {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.dog-info-box h2 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.dog-meta-info {
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.meta-item:last-child {
    border-bottom: none;
}

.meta-label {
    font-weight: 600;
}

.meta-value {
    color: var(--primary-color);
}

.dog-description {
    margin-bottom: 30px;
}

.dog-tabs {
    margin-top: 50px;
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 30px;
}

.tab-link {
    padding: 15px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.tab-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.pedigree-tree {
    width: 100%;
    overflow-x: auto;
}

.pedigree-tree table {
    width: 100%;
    border-collapse: collapse;
}

.pedigree-tree td {
    padding: 10px;
    border: 1px solid var(--light-gray);
}

.pedigree-tree .generation-1 {
    background-color: var(--light-color);
}

.pedigree-tree .generation-2 {
    background-color: var(--white);
}

.pedigree-tree .generation-3 {
    background-color: var(--light-color);
}

.filhotes-produzidos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.filhote-mini-card {
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.filhote-mini-image {
    height: 150px;
}

.filhote-mini-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.filhote-mini-info {
    padding: 15px;
}

.filhote-mini-info h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.filhote-mini-info p {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 0;
}

.cta-box {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    color: var(--white);
    text-align: center;
}

.cta-box h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 20px;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Página de Blog */
.blog-page {
    padding: 100px 0;
    margin-top: 80px;
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
}

.blog-main {
    flex: 0 0 70%;
    padding: 15px;
}

.blog-sidebar {
    flex: 0 0 30%;
    padding: 15px;
}

.blog-post {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.blog-post-image {
    height: 400px;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    padding: 30px;
}

.blog-post-content h2 {
    margin-bottom: 15px;
}

.blog-post-meta {
    display: flex;
    margin-bottom: 20px;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    color: var(--gray-color);
    font-size: 14px;
    margin-right: 20px;
}

.blog-post-meta span i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-post-excerpt {
    margin-bottom: 20px;
}

.sidebar-widget {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-gray);
}

.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px 0 0 5px;
    font-family: inherit;
    font-size: 16px;
}

.search-form button {
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    border-bottom: 1px solid var(--light-gray);
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list li a {
    display: block;
    padding: 10px 0;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.categories-list li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.categories-list li a span {
    float: right;
    background-color: var(--light-color);
    color: var(--gray-color);
    padding: 2px 8px;
    border-radius: 30px;
    font-size: 12px;
}

.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.recent-post-info span {
    color: var(--gray-color);
    font-size: 12px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
}

.tag-cloud a {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--light-color);
    color: var(--gray-color);
    border-radius: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--secondary-color);
    border-radius: 5px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.pagination a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Responsividade */
@media (max-width: 1200px) {
    .container {
        max-width: 970px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 750px;
    }
    
    .about-image,
    .about-text {
        flex: 0 0 100%;
    }
    
    .dogs-grid,
    .filhotes-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info,
    .contact-form {
        flex: 0 0 100%;
    }
    
    .blog-main,
    .blog-sidebar {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--secondary-color);
        transition: all 0.3s ease;
        overflow-y: auto;
    }
    
    .main-navigation.active {
        left: 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation ul li {
        width: 100%;
    }
    
    .main-navigation ul li a {
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-navigation ul li ul.sub-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
    }
    
    .main-navigation ul li:hover ul.sub-menu {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .dogs-grid,
    .filhotes-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .dog-gallery,
    .dog-info-sidebar {
        flex: 0 0 100%;
    }
    
    .footer-widget {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    
    .feature-item {
        flex: 0 0 100%;
    }
    
    .plantel-tab {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tabs-nav {
        flex-wrap: wrap;
    }
    
    .tab-link {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .filhotes-produzidos {
        grid-template-columns: repeat(2, 1fr);
    }
}
