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

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

/* Header */
.cantopet-header-unique-2025 {
    background-image: url('cantopet_header_bg_unique_2025.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.cantopet-header-unique-2025::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.cantopet-header-content-unique-2025 {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.cantopet-logo-unique-2025 {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.cantopet-title-unique-2025 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cantopet-subtitle-unique-2025 {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Navigation */
.cantopet-nav-unique-2025 {
    background-color: #FF9933;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cantopet-nav-link-unique-2025 {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    border-bottom: 3px solid transparent;
}

.cantopet-nav-link-unique-2025:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-bottom-color: #1E3A5F;
}

/* Sections */
.cantopet-section-unique-2025 {
    padding: 60px 20px;
}

.cantopet-section-white-unique-2025 {
    background-color: #ffffff;
}

.cantopet-section-gray-unique-2025 {
    background-color: #f5f5f5;
}

.cantopet-section-dark-unique-2025 {
    background-color: #1E3A5F;
    color: white;
}

.cantopet-section-title-unique-2025 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #1E3A5F;
    position: relative;
    padding-bottom: 15px;
}

.cantopet-section-dark-unique-2025 .cantopet-section-title-unique-2025 {
    color: white;
}

.cantopet-section-title-unique-2025::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #FF9933;
}

/* Content Grid */
.cantopet-content-grid-unique-2025 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.cantopet-text-content-unique-2025 {
    padding: 20px;
}

.cantopet-text-content-unique-2025 p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.cantopet-text-content-unique-2025 h3 {
    color: #1E3A5F;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.cantopet-media-content-unique-2025 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cantopet-video-unique-2025 {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cantopet-highlight-box-unique-2025 {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #FF9933;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cantopet-highlight-box-unique-2025 h3 {
    color: #1E3A5F;
    margin-bottom: 10px;
}

/* Button */
.cantopet-button-unique-2025 {
    display: inline-block;
    background-color: #FF9933;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cantopet-button-unique-2025:hover {
    background-color: #e68a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Cards Grid */
.cantopet-cards-grid-unique-2025 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cantopet-card-unique-2025 {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cantopet-card-unique-2025:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cantopet-card-image-unique-2025 {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.cantopet-card-title-unique-2025 {
    color: #1E3A5F;
    font-size: 1.3rem;
    padding: 15px 20px 10px;
    font-weight: bold;
}

.cantopet-card-text-unique-2025 {
    padding: 0 20px 20px;
    color: #666;
}

/* Requirements Box */
.cantopet-requirements-box-unique-2025 {
    background-color: #1E3A5F;
    color: white;
    padding: 30px;
    border-radius: 10px;
}

.cantopet-requirements-box-unique-2025 h3 {
    color: #FF9933;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.cantopet-requirements-box-unique-2025 ul {
    list-style: none;
    padding: 0;
}

.cantopet-requirements-box-unique-2025 li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.cantopet-requirements-box-unique-2025 li::before {
    content: '•';
    color: #FF9933;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

.cantopet-highlight-unique-2025 {
    background-color: #FF9933;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

.cantopet-highlight-unique-2025 h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

/* Items Grid */
.cantopet-subsection-title-unique-2025 {
    text-align: center;
    font-size: 1.8rem;
    color: #1E3A5F;
    margin: 40px 0 30px;
}

.cantopet-items-grid-unique-2025 {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cantopet-item-card-unique-2025 {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cantopet-item-card-unique-2025 h4 {
    color: #1E3A5F;
    margin: 15px 0;
    font-size: 1.3rem;
}

.cantopet-reminder-unique-2025 {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: #666;
}

/* Funcionamento Grid */
.cantopet-funcionamento-grid-unique-2025 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cantopet-info-box-unique-2025 {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    border-top: 5px solid #FF9933;
}

.cantopet-info-box-unique-2025 h3 {
    color: #1E3A5F;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.cantopet-schedule-unique-2025 {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.cantopet-schedule-unique-2025 h4 {
    color: #FF9933;
    margin-bottom: 10px;
}

/* Plans Grid */
.cantopet-plans-grid-unique-2025 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cantopet-plan-card-unique-2025 {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 3px solid transparent;
}

.cantopet-plan-card-unique-2025:hover {
    transform: scale(1.05);
    border-color: #FF9933;
}

.cantopet-plan-card-unique-2025 h3 {
    color: #1E3A5F;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cantopet-price-unique-2025 {
    font-size: 2rem;
    font-weight: bold;
    color: #FF9933;
    margin: 20px 0;
}

.cantopet-plan-card-unique-2025 ul {
    list-style: none;
    text-align: left;
    padding: 0;
}

.cantopet-plan-card-unique-2025 li {
    padding: 8px 0;
    color: #333;
}

.cantopet-plan-card-unique-2025 p {
    text-align: left;
    color: #333;
    line-height: 1.6;
}

.cantopet-discount-info-unique-2025 {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    font-weight: bold;
}

.cantopet-discount-info-unique-2025 p {
    margin: 10px 0;
}

/* Timeline */
.cantopet-timeline-unique-2025 {
    max-width: 900px;
    margin: 0 auto;
}

.cantopet-timeline-item-unique-2025 {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.cantopet-timeline-item-unique-2025:last-child {
    border-bottom: none;
}

.cantopet-timeline-time-unique-2025 {
    font-weight: bold;
    color: #FF9933;
    font-size: 1.1rem;
    text-align: right;
    padding-right: 20px;
    border-right: 4px solid #FF9933;
}

.cantopet-timeline-content-unique-2025 h3 {
    color: #1E3A5F;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.cantopet-timeline-content-unique-2025 p {
    color: #666;
}

.cantopet-cta-center-unique-2025 {
    text-align: center;
    margin-top: 50px;
}

/* Footer */
.cantopet-footer-unique-2025 {
    background-color: #1E3A5F;
    color: white;
    padding: 50px 20px 20px;
}

.cantopet-footer-content-unique-2025 {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cantopet-footer-logo-unique-2025 {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.cantopet-footer-tagline-unique-2025 {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cantopet-footer-section-unique-2025 {
    margin: 30px 0;
}

.cantopet-footer-section-unique-2025 h3 {
    color: #FF9933;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cantopet-footer-links-unique-2025 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cantopet-footer-links-unique-2025 a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cantopet-footer-links-unique-2025 a:hover {
    color: #FF9933;
}

.cantopet-social-links-unique-2025 {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cantopet-social-links-unique-2025 a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background-color: rgba(255, 153, 51, 0.3);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cantopet-social-links-unique-2025 a:hover {
    background-color: #FF9933;
}

.cantopet-copyright-unique-2025 {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .cantopet-title-unique-2025 {
        font-size: 2rem;
    }

    .cantopet-nav-unique-2025 {
        flex-direction: column;
    }

    .cantopet-content-grid-unique-2025 {
        grid-template-columns: 1fr;
    }

    .cantopet-timeline-item-unique-2025 {
        grid-template-columns: 1fr;
    }

    .cantopet-timeline-time-unique-2025 {
        text-align: left;
        border-right: none;
        border-bottom: 4px solid #FF9933;
        padding-bottom: 10px;
        padding-right: 0;
    }

    .cantopet-section-title-unique-2025 {
        font-size: 1.8rem;
    }
}

