/* ===== ESTILOS PARA PÁGINAS INTERNAS ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 140px 0 80px;
    color: white;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}

/* Quote Card */
.quote-card {
    background: var(--bg-lighter);
    padding: 3rem;
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
}

.quote-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* MVV Cards */
.section-mvv {
    background: var(--bg-light);
}

.mvv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.mvv-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.mvv-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.values-list-simple {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.values-list-simple li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.values-list-simple li:last-child {
    border-bottom: none;
}

.values-list-simple li::before {
    content: "→";
    color: var(--primary);
    font-weight: 700;
    margin-right: 0.8rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Journey Section */
.section-journey {
    background: var(--bg-light);
}

.journey-card {
    background: white;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.journey-card h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Calendar Page */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.calendar-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.calendar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.calendar-day {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.calendar-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.calendar-card ul li {
    padding: 0.6rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.calendar-card ul li i {
    color: var(--primary);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Specialist Cards */
.specialist-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.specialist-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.specialist-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--bg-lighter);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.specialist-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.specialist-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.specialist-topics {
    background: var(--bg-lighter);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.specialist-topics ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.specialist-topics ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.specialist-topics ul li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 700;
    margin-right: 0.6rem;
}

/* Plan Cards */
.plan-card-full {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plan-card-full.featured {
    border-color: var(--primary);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.plan-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.plan-features li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.plan-features li i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.benefit-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Team Member Cards */
.team-member-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-photo {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: white;
}

.team-member-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.team-member-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Science Cards */
.science-section-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.science-section-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.references-list li {
    padding: 1rem;
    background: var(--bg-lighter);
    border-radius: 8px;
    margin-bottom: 0.8rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.references-list li strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.3rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    padding: 0.8rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.1);
}

.contact-info-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.2rem;
}

.contact-info-item div h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-info-item div p {
    color: var(--text-gray);
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .quote-card {
        padding: 2rem;
    }

    .quote-text {
        font-size: 1.1rem;
    }

    .mvv-card {
        padding: 2rem 1.5rem;
    }

    .journey-card {
        padding: 2.5rem;
    }

    .plan-card-full {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Calendar Specific Styles */
.calendar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.specialist-schedule {
    margin-top: 1.5rem;
}

.specialist-item {
    padding: 1rem;
    background: var(--bg-lighter);
    border-radius: 8px;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.week-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.specialist-item p {
    margin: 0;
    color: var(--text-gray);
}

.specialist-item strong {
    color: var(--text-dark);
}

.section-calendar {
    background: var(--bg-light);
}

/* ===== ESTILOS PARA PÁGINA DE CONTATO ===== */

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Accordion Customizado */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    font-size: 1.05rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0) saturate(100%);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(100%);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
    background: white;
}

/* Responsive Adjustments for Contact */
@media (max-width: 768px) {
    .contact-form {
        padding: 2rem 1.5rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* ===== ESTILOS PARA PÁGINAS PARA VOCÊ E PARA EMPRESAS ===== */

/* Plans Section */
.section-plans {
    background: var(--bg-light);
}

.plan-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--bg-lighter);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-price {
    padding: 1.5rem;
    background: var(--bg-lighter);
    border-radius: 12px;
    margin: 1.5rem 0;
}

.price-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Comparison Table */
.comparison-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.comparison-table {
    margin-bottom: 0;
}

.comparison-table thead {
    background: var(--bg-lighter);
}

.comparison-table th {
    padding: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    border: none;
}

.comparison-table td {
    padding: 1rem 1.2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
}

.comparison-table .bi-check-lg {
    font-size: 1.5rem;
}

.comparison-table .bi-x-lg {
    font-size: 1.3rem;
}

/* Specialist Cards */
.specialist-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.specialist-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.specialist-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.specialist-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.specialist-card p {
    color: var(--text-gray);
    margin: 0;
}

/* Resource Cards */
.section-resources {
    background: var(--bg-light);
}

.resource-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.resource-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.resource-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.resource-card p {
    color: var(--text-gray);
    margin: 0;
}

/* Benefits Section */
.section-benefits {
    background: var(--bg-light);
}

/* Process Cards */
.process-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.process-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-card p {
    color: var(--text-gray);
    margin: 0;
}

/* Program Details Card */
.program-details-card {
    background: var(--bg-lighter);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
}

.program-details-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.program-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-list li {
    padding: 0.3rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.program-list li i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Module Cards */
.section-modules {
    background: var(--bg-light);
}

.module-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.module-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 50px;
    margin-bottom: 1.2rem;
}

.module-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.module-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Format Cards */
.format-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.format-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.format-card.featured {
    border-color: var(--primary);
    background: linear-gradient(to bottom, rgba(102, 126, 234, 0.02), white);
}

.format-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.format-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.format-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.format-card > p {
    color: var(--text-gray);
    font-weight: 600;
}

.format-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    text-align: left;
}

.format-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.format-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Testimonials */
.section-testimonials {
    background: var(--bg-light);
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1.05rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .comparison-card {
        padding: 2rem 1.5rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .program-details-card {
        padding: 2rem 1.5rem;
    }

    .format-card {
        padding: 2rem 1.5rem;
    }
}

/* ===== ESTILOS PARA PÁGINA DE CONTATO ===== */

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Accordion Customizado */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    font-size: 1.05rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0) saturate(100%);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(100%);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
    background: white;
}

/* Responsive Adjustments for Contact */
@media (max-width: 768px) {
    .contact-form {
        padding: 2rem 1.5rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* ===== ESTILOS PARA MÓDULOS CIENTÍFICOS COMPACTOS ===== */

.science-module-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
}

.science-module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.science-module-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.references-list-compact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.references-list-compact li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
    line-height: 1.2;
}

.references-list-compact li:last-child {
    border-bottom: none;
}

.references-list-compact strong {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.references-list-compact small {
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 991px) {
    .science-module-card {
        margin-bottom: 1.5rem;
    }
}
