:root {
    --primary-color: #FFD700;
    --secondary-color: #2c3e50;
    --accent-color: #f1c40f;
    --text-color: #34495e;
    --bg-color: #ffffff;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
    --container-width: 1300px;
    /* Increased width */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 25px;
}

.yellow {
    color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(241, 196, 15, 0.3);
}

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

.btn-outline:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    height: 85px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 55px;
    width: auto;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 220px;
    box-shadow: var(--shadow);
    z-index: 1001;
    border-radius: 12px;
    top: 100%;
    left: 0;
    overflow: hidden;
    border: 1px solid #eee;
    padding: 10px 0;
}

/* Gap bridge for dropdown */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.dropdown-content a {
    color: var(--secondary-color) !important;
    padding: 12px 20px;
    text-decoration: none !important;
    display: block;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.dropdown-content a:hover {
    background-color: var(--light-bg);
    color: var(--accent-color) !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropbtn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 85px;
    /* Match header height to eliminate gap */
}

/* Main SPA */
#app-content {
    margin-top: 85px;
    /* Match header height */
    min-height: 75vh;
}

/* Global Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--secondary-color);
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 10px auto;
    border-radius: 2px;
}

.section-header p {
    color: #7f8c8d;
    font-size: 1.2rem;
}

/* Hero */
.hero-section {
    padding: 40px 0 80px;
    /* Reduced top padding from 100px to 40px */
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-color);
    color: #000;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(241, 196, 15, 0.2);
}

.hero-text h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #555;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 30px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Grooming Animation */
.grooming-card .icon-box {
    position: relative;
    overflow: hidden;
}

.dog-anim {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 1.5rem;
    opacity: 0.2;
    transform: rotate(-20deg);
    animation: dogShake 2s ease-in-out infinite;
}

@keyframes dogShake {

    0%,
    100% {
        transform: rotate(-20deg) translateX(0);
    }

    50% {
        transform: rotate(-10deg) translateX(5px);
    }
}

/* Floating WhatsApp Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.float-wa {
    animation: pulse 2s infinite;
}

/* Floating WhatsApp */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
}

.float-wa:hover {
    transform: scale(1.1) rotate(10deg);
    color: #fff;
}

/* Tele Banner (Compact on Home) */
.tele-banner-wrapper {
    padding: 0;
    margin-top: -40px;
}

.tele-banner {
    background: var(--secondary-color);
    color: #fff;
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tele-banner h2 {
    color: #fff;
    margin-bottom: 5px;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Grid Systems */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 45px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 25px;
}

/* Dropdown Style */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 220px;
    box-shadow: var(--shadow);
    z-index: 1001;
    border-radius: 12px;
    top: 60px;
    /* Aligned with header height */
    left: 0;
    overflow: hidden;
    border: 1px solid #eee;
    padding: 10px 0;
}

.dropdown-content a {
    color: var(--secondary-color);
    padding: 12px 25px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding-left: 30px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropbtn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Global Link Reset for footer and secondary links */
.main-footer a,
.btn-text,
.dropdown-content a {
    text-decoration: none !important;
    color: inherit;
}

.main-footer a:hover {
    color: var(--primary-color) !important;
}

.btn-text {
    color: var(--secondary-color) !important;
    font-weight: 700;
}

.page-header {
    background: var(--secondary-color);
    padding: 60px 0;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.page-header h1,
.page-header p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.page-header h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.page-header h1 .yellow {
    color: var(--accent-color) !important;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 15px auto 0;
}

/* Footer */
/* Premium Footer (Inspirado em novo_site) */
.main-footer {
    background: #020617;
    color: #94a3b8;
    padding: 80px 0 40px;
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-brand .footer-logo {
    max-height: 55px;
    margin-bottom: 25px;
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 25px;
    color: #94a3b8;
}

.footer-column h4 {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 18px;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

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

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

.footer-contact-item .material-symbols-outlined {
    color: var(--primary-color);
    font-size: 1.4rem;
}

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

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-hours-list li .day {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
}

.footer-hours-list li .time {
    color: #fff;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #0f172a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #64748b;
}

.footer-legal a {
    color: #64748b;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: #fff;
}

/* Blog Page Specific Styles */
.blog-list-section {
    padding-top: 100px !important;
}

.blog-post-card {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #f1f1f1;
    margin-bottom: 50px;
    min-height: 450px;
    height: auto;
    /* Flexible height to allow long content */
}

.post-img {
    width: 40%;
    height: auto;
    min-height: 450px;
    background-size: cover;
    background-position: center;
}

.post-content {
    width: 60%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.post-text {
    width: 100%;
    color: #444;
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: left;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.post-meta {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

/* Home Blog Grid (Limit 2 posts) */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto;
}

.blog-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-info {
    padding: 25px;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-post-card {
        flex-direction: column;
    }

    .post-img {
        width: 100%;
        height: 250px;
        min-width: auto;
    }

    .post-content {
        width: 100%;
        padding: 30px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 30px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
}

/* Forms - Premium Design System */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    background: #fff;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-color);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.w-100 {
    width: 100%;
}

/* Contact Specific */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border: 1px solid #f1f1f1;
}

.contact-card h4 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-container {
    background: var(--light-bg);
    padding: 50px;
    border-radius: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Responsive Blog Alignment */
@media (max-width: 992px) {
    .blog-post-card {
        flex-direction: column !important;
    }

    .post-img {
        width: 100% !important;
        min-height: 300px !important;
    }

    .post-content {
        width: 100% !important;
        padding: 30px !important;
    }
}