
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --whatsapp-green: #25d366;
            --phone-blue: #0071e3;
            --apple-white: #ffffff;
            --apple-light-gray: #f5f5f7;
            --apple-gray: #86868b;
            --apple-dark: #1d1d1f;
            --apple-text: #333333;
            --border-radius: 18px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
            line-height: 1.6;
            color: var(--apple-text);
            background-color: var(--apple-white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .vet-dog-container {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .vet-dog-wide-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .vet-dog-header {
            background: var(--apple-white);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(20px);
            background: rgba(255, 255, 255, 0.95);
        }

        .vet-dog-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .vet-dog-logo {
            font-size: 24px;
            font-weight: 600;
            color: var(--apple-dark);
            letter-spacing: -0.5px;
        }

        .vet-dog-header-contact {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .vet-dog-header-phone {
            color: var(--phone-blue);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: var(--transition);
        }

        .vet-dog-header-phone:hover {
            opacity: 0.7;
        }

        .vet-dog-hero {
            background: linear-gradient(135deg, var(--apple-light-gray) 0%, var(--apple-white) 100%);
            padding: 80px 20px;
            text-align: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .vet-dog-hero h1 {
            font-size: 56px;
            font-weight: 700;
            color: var(--apple-dark);
            margin-bottom: 20px;
            letter-spacing: -1.5px;
            line-height: 1.1;
        }

        .vet-dog-hero-subtitle {
            font-size: 24px;
            color: var(--apple-gray);
            margin-bottom: 40px;
            font-weight: 400;
            line-height: 1.4;
        }

        .vet-dog-cta-group {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .vet-dog-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 980px;
            text-decoration: none;
            font-weight: 500;
            font-size: 17px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .vet-dog-cta-whatsapp {
            background: var(--whatsapp-green);
            color: white;
        }

        .vet-dog-cta-whatsapp:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(37, 211, 102, 0.3);
        }

        .vet-dog-cta-phone {
            background: var(--phone-blue);
            color: white;
        }

        .vet-dog-cta-phone:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 113, 227, 0.3);
        }

        .vet-dog-section {
            padding: 80px 20px;
        }

        .vet-dog-section-alt {
            background: var(--apple-light-gray);
        }

        .vet-dog-section-title {
            font-size: 44px;
            font-weight: 700;
            color: var(--apple-dark);
            margin-bottom: 16px;
            letter-spacing: -1px;
            text-align: center;
        }

        .vet-dog-section-subtitle {
            font-size: 21px;
            color: var(--apple-gray);
            margin-bottom: 60px;
            text-align: center;
            font-weight: 400;
        }

        .vet-dog-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .vet-dog-content h2 {
            font-size: 36px;
            font-weight: 700;
            color: var(--apple-dark);
            margin: 60px 0 24px 0;
            letter-spacing: -0.5px;
        }

        .vet-dog-content h3 {
            font-size: 28px;
            font-weight: 600;
            color: var(--apple-dark);
            margin: 40px 0 20px 0;
            letter-spacing: -0.3px;
        }

        .vet-dog-content h4 {
            font-size: 22px;
            font-weight: 600;
            color: var(--apple-dark);
            margin: 30px 0 16px 0;
        }

        .vet-dog-content p {
            font-size: 17px;
            line-height: 1.8;
            color: var(--apple-text);
            margin-bottom: 20px;
        }

        .vet-dog-content ul,
        .vet-dog-content ol {
            margin: 20px 0;
            padding-left: 24px;
        }

        .vet-dog-content li {
            font-size: 17px;
            line-height: 1.8;
            color: var(--apple-text);
            margin-bottom: 12px;
        }

        .vet-dog-card {
            background: var(--apple-white);
            border-radius: var(--border-radius);
            padding: 32px;
            margin-bottom: 24px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .vet-dog-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }

        .vet-dog-card h3 {
            margin-top: 0;
            color: var(--phone-blue);
        }

        .vet-dog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin: 40px 0;
        }

        .vet-dog-warning {
            background: linear-gradient(135deg, #ff3b30 0%, #ff6b6b 100%);
            color: white;
            padding: 32px;
            border-radius: var(--border-radius);
            margin: 40px 0;
        }

        .vet-dog-warning h3 {
            color: white;
            margin-top: 0;
            font-size: 28px;
        }

        .vet-dog-warning ul {
            margin: 20px 0;
        }

        .vet-dog-warning li {
            color: white;
            margin-bottom: 12px;
        }

        .vet-dog-info-box {
            background: var(--apple-light-gray);
            border-left: 4px solid var(--phone-blue);
            padding: 24px;
            border-radius: 8px;
            margin: 30px 0;
        }

        .vet-dog-highlight {
            background: linear-gradient(135deg, var(--phone-blue) 0%, #0077ed 100%);
            color: white;
            padding: 48px;
            border-radius: var(--border-radius);
            text-align: center;
            margin: 60px 0;
        }

        .vet-dog-highlight h3 {
            color: white;
            font-size: 32px;
            margin-bottom: 16px;
        }

        .vet-dog-highlight p {
            color: white;
            font-size: 19px;
            margin-bottom: 32px;
            opacity: 0.95;
        }

        .vet-dog-price {
            font-size: 48px;
            font-weight: 700;
            color: white;
            margin: 24px 0;
        }

        .vet-dog-faq {
            max-width: 800px;
            margin: 0 auto;
        }

        .vet-dog-faq-item {
            background: var(--apple-white);
            border-radius: var(--border-radius);
            padding: 32px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .vet-dog-faq-question {
            font-size: 21px;
            font-weight: 600;
            color: var(--apple-dark);
            margin-bottom: 16px;
        }

        .vet-dog-faq-answer {
            font-size: 17px;
            line-height: 1.8;
            color: var(--apple-text);
        }

        .vet-dog-faq-answer ul {
            margin: 16px 0;
            padding-left: 24px;
        }

        .vet-dog-faq-answer li {
            margin-bottom: 8px;
        }

        .vet-dog-reviews {
            max-width: 1000px;
            margin: 60px auto;
        }

        .vet-dog-review-card {
            background: var(--apple-white);
            border-radius: var(--border-radius);
            padding: 32px;
            margin-bottom: 24px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .vet-dog-review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .vet-dog-review-author {
            font-size: 19px;
            font-weight: 600;
            color: var(--apple-dark);
        }

        .vet-dog-review-stars {
            color: #ffb800;
            font-size: 20px;
        }

        .vet-dog-review-text {
            font-size: 17px;
            line-height: 1.8;
            color: var(--apple-text);
            margin-bottom: 12px;
        }

        .vet-dog-review-date {
            font-size: 15px;
            color: var(--apple-gray);
        }

        .vet-dog-footer {
            background: var(--apple-dark);
            color: white;
            padding: 60px 20px 40px 20px;
        }

        .vet-dog-footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .vet-dog-footer h4 {
            font-size: 19px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .vet-dog-footer p,
        .vet-dog-footer a {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
        }

        .vet-dog-footer a:hover {
            color: white;
        }

        .vet-dog-footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .vet-dog-list-check {
            list-style: none;
            padding-left: 0;
        }

        .vet-dog-list-check li {
            padding-left: 32px;
            position: relative;
        }

        .vet-dog-list-check li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--phone-blue);
            font-weight: 700;
            font-size: 20px;
        }

        .vet-dog-badge {
            display: inline-block;
            background: var(--phone-blue);
            color: white;
            padding: 6px 16px;
            border-radius: 980px;
            font-size: 14px;
            font-weight: 600;
            margin-right: 12px;
            margin-bottom: 8px;
        }

        .vet-dog-badge-red {
            background: #ff3b30;
        }

        .vet-dog-badge-green {
            background: var(--whatsapp-green);
        }

        .vet-dog-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: var(--apple-white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .vet-dog-table th,
        .vet-dog-table td {
            padding: 16px;
            text-align: left;
            border-bottom: 1px solid var(--apple-light-gray);
        }

        .vet-dog-table th {
            background: var(--apple-light-gray);
            font-weight: 600;
            color: var(--apple-dark);
        }

        .vet-dog-table tr:last-child td {
            border-bottom: none;
        }

        @media (max-width: 768px) {
            .vet-dog-hero h1 {
                font-size: 40px;
            }

            .vet-dog-hero-subtitle {
                font-size: 20px;
            }

            .vet-dog-section-title {
                font-size: 32px;
            }

            .vet-dog-section-subtitle {
                font-size: 18px;
            }

            .vet-dog-content h2 {
                font-size: 28px;
            }

            .vet-dog-content h3 {
                font-size: 24px;
            }

            .vet-dog-grid {
                grid-template-columns: 1fr;
            }

            .vet-dog-cta-group {
                flex-direction: column;
            }

            .vet-dog-header-contact {
                flex-direction: column;
                gap: 8px;
            }

            .vet-dog-footer-content {
                grid-template-columns: 1fr;
            }
        }

        .vet-dog-symptom-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .vet-dog-symptom-card {
            background: var(--apple-white);
            border-radius: var(--border-radius);
            padding: 24px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--phone-blue);
        }

        .vet-dog-symptom-card h4 {
            color: var(--phone-blue);
            margin-top: 0;
            margin-bottom: 12px;
        }

        .vet-dog-process-steps {
            counter-reset: step-counter;
            list-style: none;
            padding-left: 0;
        }

        .vet-dog-process-steps li {
            counter-increment: step-counter;
            position: relative;
            padding-left: 60px;
            margin-bottom: 32px;
        }

        .vet-dog-process-steps li:before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            background: var(--phone-blue);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
        }

        .vet-dog-comparison {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin: 40px 0;
        }

        .vet-dog-comparison-item {
            background: var(--apple-white);
            border-radius: var(--border-radius);
            padding: 28px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .vet-dog-comparison-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .vet-dog-quick-contact {
            position: fixed;
            bottom: 24px;
            right: 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 999;
        }

        .vet-dog-quick-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            font-size: 24px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: var(--transition);
        }

        .vet-dog-quick-btn:hover {
            transform: scale(1.1);
        }

        .vet-dog-quick-whatsapp {
            background: var(--whatsapp-green);
        }

        .vet-dog-quick-phone {
            background: var(--phone-blue);
        }

        @media (max-width: 768px) {
            .vet-dog-quick-contact {
                bottom: 16px;
                right: 16px;
            }

            .vet-dog-quick-btn {
                width: 48px;
                height: 48px;
                font-size: 20px;
            }
        }
    