/* ===== DOMÍNIO STYLES ===== */

/* Hero Section */
.dominio-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    overflow: hidden;
}

.dominio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.dominio-hero .container {
    position: relative;
    z-index: 2;
}

.dominio-hero h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.dominio-hero .lead {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: 12px 24px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Breadcrumb */
.breadcrumb-section {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-item a {
    color: #1e3c72;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #2a5298;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Content Section */
.dominio-content {
    background: #f8f9fa;
    min-height: 100vh;
}

.dominio-section {
    margin-bottom: 3rem;
}

.section-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    color: #1e3c72;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    border-radius: 2px;
}

.section-title i {
    font-size: 1.8rem;
}

/* Domínio Cards */
.dominio-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.dominio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
}

.dominio-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.dominio-card h3 {
    color: #1e3c72;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.dominio-card h3 i {
    font-size: 1.2rem;
}

/* Domínio Lists */
.dominio-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.dominio-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.dominio-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Example Box */
.dominio-example {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.example-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    width: 100%;
}

.example-label {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.example-domain {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.example-breakdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
}

.example-breakdown .part {
    color: #495057;
    font-weight: 500;
}

.example-breakdown .separator {
    color: #6c757d;
    font-weight: bold;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #1e3c72;
}

.step-number {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1e3c72;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-content p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}

/* Tip Box */
.tip-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.tip-box i {
    font-size: 1.1rem;
}

/* Criteria Grid */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.criterion {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.criterion:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.criterion-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.criterion-icon i {
    font-size: 1.5rem;
    color: white;
}

.criterion h4 {
    color: #1e3c72;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.criterion p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Examples Grid */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.example-item {
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid;
    transition: all 0.3s ease;
}

.example-item.good {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-color: #28a745;
}

.example-item.bad {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-color: #dc3545;
}

.example-domain {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.example-rating {
    margin-bottom: 0.5rem;
}

.example-item p {
    font-size: 0.9rem;
    margin: 0;
    color: #495057;
}

/* SEO Factors */
.seo-factors {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.seo-factor {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #28a745;
}

.factor-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.factor-icon i {
    font-size: 1.2rem;
    color: white;
}

.factor-content h4 {
    color: #1e3c72;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.factor-content p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}

/* Pricing Table */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.pricing-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    border-color: #1e3c72;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pricing-header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.pricing-header h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
}

.pricing-features {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #495057;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* FAQ */
.faq-container {
    margin-top: 1.5rem;
}

.faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    color: #1e3c72;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #1e3c72;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.5rem;
    background: white;
}

.faq-answer p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.cta-card h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-card .btn {
    background: white;
    color: #1e3c72;
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.cta-card .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .process-steps {
        gap: 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
    }
    
    .seo-factor {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .cta-card .row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-card .text-md-end {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .dominio-card {
        padding: 1.5rem;
    }
    
    .example-box {
        padding: 1rem;
    }
    
    .example-domain {
        font-size: 1rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .criterion-icon {
        width: 50px;
        height: 50px;
    }
    
    .criterion-icon i {
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .dominio-hero {
        background: white !important;
        color: black !important;
    }
    
    .dominio-hero h1,
    .dominio-hero .lead {
        color: black !important;
    }
    
    .hero-badge {
        background: #f8f9fa !important;
        color: black !important;
        border: 1px solid #dee2e6 !important;
    }
    
    .dominio-card {
        box-shadow: none !important;
        border: 1px solid #dee2e6 !important;
    }
    
    .cta-card {
        background: #f8f9fa !important;
        color: black !important;
    }
    
    .cta-card h3,
    .cta-card p {
        color: black !important;
    }
} 