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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

/* Cabeçalho */
header {
    background-color: #4CAF50;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: relative;
}

.header-content h1 {
    margin: 0;
    font-size: 2.8em;
    letter-spacing: 1px;
}

.header-content p {
    font-size: 1.2em;
    margin-top: 5px;
}

/* Navegação */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.nav-links {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-links li a:hover {
    background-color: #5cb85c;
}

.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    font-size: 2em;
    cursor: pointer;
    color: #fff;
    position: absolute;
    right: 20px;
    top: 30px;
}

/* Botões */
.btn {
    display: inline-block;
    background-color: #FFC107;
    color: #333;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.btn:hover {
    background-color: #ffa000;
    transform: translateY(-2px);
}

/* Seções */
section {
    padding: 60px 0;
    text-align: center;
}

.section-padded {
    padding: 60px 20px;
}

.bg-light {
    background-color: #f0f0f0;
}

h2 {
    font-size: 2.5em;
    color: #4CAF50;
    margin-bottom: 30px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #FFC107;
    margin: 10px auto 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://via.placeholder.com/1500x600?text=Pet+Background') no-repeat center center/cover;
    color: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-text {
    max-width: 800px;
    padding: 20px;
}

.hero h2 {
    color: #fff;
    font-size: 3.5em;
    margin-bottom: 15px;
}

.hero h2::after {
    background-color: #fff;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 25px;
}

/* Grids */
.servicos-grid, .produtos-grid, .galeria-grid {
    display: grid;
    gap: 30px;
    padding: 0 20px;
}

.servicos-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.produtos-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.galeria-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.servico-item, .produto-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.servico-item:hover, .produto-item:hover {
    transform: translateY(-5px);
}

.servico-item img, .produto-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
}

.servico-item h3, .produto-item h3 {
    color: #4CAF50;
    margin-top: 0;
    font-size: 1.5em;
}

.produto-item .preco {
    font-weight: bold;
    color: #FFC107;
    font-size: 1.4em;
    display: block;
    margin-top: 10px;
}

.galeria-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.galeria-grid img:hover {
    transform: scale(1.03);
}

/* Formulário de Agendamento */
.cta-form {
    background: rgba(255,255,255,0.95);
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    color: #333;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #4CAF50;
    font-size: 1.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.success-message {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
}

.contato-info {
    margin-top: 40px;
    font-size: 1.1em;
    color: #555;
}

.contato-info p {
    margin-bottom: 10px;
}

.contato-info i {
    margin-right: 8px;
    color: #4CAF50;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 25px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #FFC107;
}

.modal-header {
    text-align: center;
    margin-bottom: 15px;
}

.modal-header h2 {
    color: #4CAF50;
    font-size: 1.8em;
}

.modal-body {
    padding: 10px 0;
    text-align: center;
}

.modal-body p {
    margin-bottom: 15px;
}

.modal-footer {
    text-align: center;
    margin-top: 20px;
}

.modal-btn {
    background-color: #FFC107;
    color: #333;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-btn:hover {
    background-color: #ffa000;
}

.attention {
    background-color: #FFEB3B;
    color: #000;
    padding: 12px;
    border-radius: 5px;
    margin-top: 15px;
    font-weight: bold;
    text-align: center;
    border: 2px solid #FFC107;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsividade */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.2em;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #4CAF50;
        width: 100%;
        position: absolute;
        top: 100px;
        left: 0;
        padding: 10px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .nav-links li a {
        display: block;
        padding: 10px 20px;
        text-align: center;
        width: calc(100% - 40px);
    }
    
    .menu-toggle:checked + .hamburger + .nav-links {
        display: flex;
    }
    
    .hero h2 {
        font-size: 2.5em;
    }
    
    .hero p {
        font-size: 1.1em;
    }
    
    h2 {
        font-size: 2em;
    }
    
    .servicos-grid, .produtos-grid, .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    .section-padded {
        padding: 40px 15px;
    }
    
    .cta-form {
        padding: 25px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2em;
    }
    
    .hero p {
        font-size: 1em;
    }
    
    .cta-form {
        padding: 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 16px;
    }
}