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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.1rem;
}

.nav-menu a {
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #1e3a8a;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #f59e0b;
    transition: width 0.8s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border: 2px solid #1e3a8a;
    border-radius: 8px;
    transition: all 0.8s ease;
}

.btn-phone:hover {
    background: #1e3a8a;
    color: white;
}

.btn-cta {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.0rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.8s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 20px rgba(245, 158, 11, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 30px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #f59e0b;
    position: relative;
}

.hero-subtitle {
    font-size: 1.10rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
}

.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.0rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #1e3a8a;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid #1e3a8a;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.0rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1e3a8a;
    color: white;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border-radius: 50%;
    z-index: -1;
}

/* Segmentação */
.segmentation {
    padding: 80px 0;
    background: #fff;
}

.segment-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.segment-card {
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.segment-card:hover {
    transform: translateY(-5px);
}

.segment-card.family {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.segment-card.business {
    background: linear-gradient(135deg, #059669, #10b981);
}

.segment-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.segment-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.segment-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.segment-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.segment-btn:hover {
    background: white;
    color: #333;
}

/* Credibilidade */
.credibility {
    padding: 80px 0;
    background: #f8fafc;
}

.credibility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.credibility h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.hospital-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hospital-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hospital-item i {
    color: #1e3a8a;
    font-size: 1.2rem;
}

.more-hospitals {
    font-style: italic;
    color: #64748b;
    font-size: 1.1rem;
}

.credibility-image {
    position: relative;
}

.credibility-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.credibility-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    z-index: -1;
}

/* Benefícios */
.benefits {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    background: white;
    border-radius: px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Planos */
.plans {
    padding: 80px 0;
    background: #f8fafc;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

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

.plan-card.featured {
    border-color: #f59e0b;
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.2rem;
    color: #64748b;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a8a;
}

.period {
    font-size: 1rem;
    color: #64748b;
}

.plan-subtitle {
    color: #64748b;
    margin-bottom: 2rem;
}

.plan-features {
    text-align: left;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #475569;
}

.feature i {
    color: #10b981;
    font-size: 1.1rem;
}

.plan-btn {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

/* Seguros */
.insurance {
    padding: 80px 0;
    background: #fff;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.insurance-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.insurance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.insurance-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.insurance-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.insurance-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.insurance-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.insurance-card li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.insurance-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.insurance-btn {
    background: transparent;
    color: #7c3aed;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border: 2px solid #7c3aed;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.insurance-btn:hover {
    background: #7c3aed;
    color: white;
}

/* Estatísticas */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Cotação */
.quote {
    padding: 80px 0;
    background: #f8fafc;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-text {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.quote-text p {
    font-size: 1.2rem;
    color: #64748b;
}

.quote-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e3a8a;
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #1e3a8a;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.form-submit {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f59e0b;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f59e0b;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f59e0b;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
}

.contact-info i {
    color: #f59e0b;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f59e0b;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .segment-cards {
        grid-template-columns: 1fr;
    }
    
    .credibility-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .quote-form {
        padding: 2rem 1.5rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.benefit-card,
.plan-card,
.insurance-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}



/* Planos Comparativo */
.plans-comparison {
    padding: 80px 0;
    background: #f8fafc;
}

.comparison-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.table-header {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 2rem;
    text-align: center;
}

.table-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.table-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.plan-column {
    padding: 2rem;
    border-right: 1px solid #e5e7eb;
    text-align: center;
}

.plan-column:last-child {
    border-right: none;
}

.plan-logo {
    height: 60px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.gocare { color: #e91e63; }
.elite { color: #059669; }
.dona { color: #d97706; }

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.plan-features {
    text-align: left;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.feature-check {
    color: #10b981;
    font-weight: bold;
}

.feature-x {
    color: #ef4444;
    font-weight: bold;
}

.plan-btn {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

@media (max-width: 768px) {
    .table-content {
        grid-template-columns: 1fr;
    }
    
    .plan-column {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .plan-column:last-child {
        border-bottom: none;
    }
}




/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 600; /* Ensure it's above other content */
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1e3a8a; /* Color of hamburger lines */
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%; /* Hidden by default */
        width: 70%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: all 0.3s ease-in-out;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 550;
    }

    .nav-menu.active {
        left: 0; /* Show when active */
    }

    .nav-menu a {
        font-size: 1.5rem;
        color: #1e3a8a;
    }

    .nav-actions {
        display: none; /* Hide desktop actions on mobile */
    }

    .hamburger {
        display: flex;
    }
}

/* Sticky Header */
.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.header.scrolled .logo {
    font-size: 1.5rem;
}

.header.scrolled .nav-menu a {
    font-size: 0.9rem;
}

.header.scrolled .btn-phone,
.header.scrolled .btn-cta {
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
}
.price-list {
    list-style-type: none; /* Isso remove os pontos da lista */
    padding-left: 0;       /* Opcional: remove o espaçamento à esquerda que a lista tem por padrão */
}
/* ======================================= */
/* Estilos Seção Parceiros (Bloquinhos)    */
/* ======================================= */
.partners-section {
    padding: 80px 0;
    background: #f8fafc; /* Um fundo cinza claro para destacar os blocos brancos */
}
.partners-grid {
    display: grid;
    gap: 1.5rem; /* Espaçamento entre os logos */
    
    /* --- ESTILO PADRÃO (CELULARES E TABLETS) --- */
    /* Em telas pequenas, ele tentará encaixar o máximo de colunas com no mínimo 120px */
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
/* --- AJUSTE PARA TELAS GRANDES (DESKTOPS) --- */
/* Quando a tela tiver 992 pixels de largura ou mais... */
@media (min-width: 992px) {
    .partners-grid {
        /* ...o código abaixo será aplicado, forçando 4 colunas. */
        grid-template-columns: repeat(4, 1fr);
    }
}
.partner-logo-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: all 0.3s ease-in-out;
}

.partner-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6; /* Cor azul do site para dar destaque */
}

.partner-logo-card img {
    max-width: 100%;
    height: auto;
    /* A linha do filter: grayscale(100%); foi REMOVIDA daqui */
    opacity: 0.75; /* Mantém uma leve transparência no estado inicial */
    transition: all 0.3s ease-in-out;
}

.partner-logo-card:hover img {
    /* A linha do filter: grayscale(0%); foi REMOVIDA daqui */
    opacity: 1; /* A opacidade vai para 100% ao passar o mouse */
}}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
}
/* ======================================= */
/* Estilos para links no rodapé (Contato)  */
/* ======================================= */

.contact-info p a {
    color: #d1d5db; /* Cor original do texto do rodapé */
    text-decoration: none; /* Remove o sublinhado */
    transition: color 0.3s ease;
}

.contact-info p a:hover {
    color: #f59e0b; /* Cor de destaque (amarelo) ao passar o mouse */
}
