/* =====================================================
   SERVICE PAGES - CSS Commun
   ===================================================== */

.breadcrumb {
    background: #f1f5f9;
    padding: 16px 0;
    font-size: 14px;
    margin-bottom: 0;
}

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

.breadcrumb a {
    color: #059669;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #047857;
}

/* Hero Service */
.hero-service {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.hero-service-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-service-icon {
    font-size: 80px;
    margin-bottom: 24px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-service h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-service-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-service-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Service Content Layout */
.service-content {
    padding: 60px 0;
    background: #fafafa;
}

.container-service {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.service-main {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Content Blocks */
.content-block {
    margin-bottom: 60px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #0f172a;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid #059669;
}

.content-block h3 {
    font-size: 22px;
    color: #059669;
    margin-bottom: 16px;
}

.content-block p {
    line-height: 1.8;
    color: #334155;
    margin-bottom: 16px;
}

.content-block strong {
    color: #0f172a;
    font-weight: 600;
}

/* Alert Block */
.alert-block {
    background: #fef2f2;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
}

.alert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.alert-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
}

.alert-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.alert-item h3 {
    font-size: 18px;
    color: #dc2626;
    margin-bottom: 12px;
}

.alert-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Methods List */
.method-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.method-item {
    background: #f8fafc;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #059669;
}

.method-item h3 {
    color: #059669;
    margin-bottom: 16px;
}

.method-item p {
    margin-bottom: 12px;
}

.method-item ul {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.method-item li {
    padding-left: 28px;
    margin-bottom: 10px;
    position: relative;
    line-height: 1.6;
}

.method-item li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    padding-left: 60px;
}

.process-timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: #cbd5e1;
}

.process-step {
    position: relative;
}

.process-number {
    position: absolute;
    left: -60px;
    top: 0;
    width: 40px;
    height: 40px;
    background: #059669;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    z-index: 1;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

/* Species Grid */
.species-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 24px 0;
}

.species-card {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.species-card.danger {
    border-color: #dc2626;
    background: #fef2f2;
}

.species-card.protected {
    border-color: #10b981;
    background: #f0fdf4;
}

.species-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.species-card ul {
    list-style: none;
    padding: 0;
}

.species-card li {
    padding-left: 24px;
    margin-bottom: 8px;
    position: relative;
}

.species-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #059669;
}

.note-importante {
    background: #fffbeb;
    padding: 16px 20px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    margin-top: 24px;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.city-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
}

.city-link:hover {
    border-color: #059669;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.city-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.city-name {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.city-delay {
    font-size: 13px;
    color: #64748b;
}

/* FAQ Block */
.faq-block {
    background: white;
}

.faq-item {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 4px solid #059669;
}

.faq-item h3 {
    color: #0f172a;
    font-size: 18px;
    margin-bottom: 12px;
}

.faq-item p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

/* CTA Block */
.cta-block {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
}

.cta-block h2 {
    color: white;
    border: none;
    margin-bottom: 16px;
}

.cta-block p {
    color: white;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 32px 0 24px 0;
}

.cta-note {
    font-size: 14px;
    opacity: 0.9;
    margin: 16px 0 0 0;
}

/* Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #0f172a;
}

.sidebar-contact {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
}

.sidebar-contact h3 {
    color: white;
}

.sidebar-contact p {
    color: white;
    opacity: 0.95;
    margin-bottom: 20px;
}

.sidebar-note {
    font-size: 13px;
    text-align: center;
    margin-top: 12px;
    opacity: 0.9;
}

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

.sidebar-links li {
    margin-bottom: 12px;
}

.sidebar-links a {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    padding: 8px 0;
}

.sidebar-links a:hover {
    color: #059669;
    padding-left: 8px;
}

.sidebar-highlights ul {
    list-style: none;
    padding: 0;
}

.sidebar-highlights li {
    padding: 8px 0;
    color: #059669;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .container-service {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: relative;
        top: 0;
    }
    
    .alert-grid {
        grid-template-columns: 1fr;
    }
    
    .species-grid {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-service h1 {
        font-size: 36px;
    }
    
    .hero-service-cta {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .process-timeline {
        padding-left: 50px;
    }
}

@media (max-width: 768px) {
    .service-main {
        padding: 24px;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-service h1 {
        font-size: 28px;
    }
    
    .content-block h2 {
        font-size: 26px;
    }
}