/* ── SOBRE MÍ ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; align-items: start; }
.about-photo { background: var(--navy); border-radius: 20px; aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(transparent, rgba(10,33,64,0.9)); z-index: 1; }
.about-icon-big { font-size: 6rem; color: rgba(255,255,255,0.1); }
.about-photo-label { position: absolute; bottom: 1.2rem; left: 1.2rem; right: 1.2rem; color: #fff; z-index: 2; }
.about-photo-label strong { display: block; font-family: 'Playfair Display', serif; font-size: 1rem; }
.about-photo-label span { font-size: 12px; color: var(--green-mid); }
.about-lead { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.15rem; color: var(--text2); margin-bottom: 1.5rem; line-height: 1.7; border-left: 3px solid var(--green); padding-left: 1rem; }
.about-body { font-size: 14.5px; color: var(--text2); line-height: 1.8; margin-bottom: 1.5rem; }
.about-creds { display: flex; flex-direction: column; gap: 10px; margin-bottom: 2rem; }
.about-cred { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text2); }
.about-cred i { color: var(--green); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.about-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── SERVICIOS ── */
.srv-section-label { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; color: var(--green); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.srv-section-label i { font-size: 15px; }
.srv-section-label.secondary { margin-top: 2.5rem; color: var(--text3); }
.srv-section-label.secondary i { color: var(--text3); }
.services-star-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.services-secondary-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.svc-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; display: flex; flex-direction: column; gap: 8px; transition: box-shadow 0.2s, border-color 0.2s; }
.svc-card:hover { box-shadow: 0 6px 20px rgba(10,33,64,0.07); border-color: rgba(29,158,117,0.25); }
.svc-card.star { background: var(--navy); border-color: rgba(29,158,117,0.35); }
.svc-card.star:hover { border-color: var(--green); }
.svc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 2px; }
.svc-icon { width: 38px; height: 38px; background: var(--green-light); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 18px; flex-shrink: 0; }
.svc-icon.star { background: rgba(29,158,117,0.18); color: var(--green-mid); }
.svc-badge { font-size: 10px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; background: rgba(29,158,117,0.18); color: var(--green-mid); padding: 3px 8px; border-radius: 20px; white-space: nowrap; height: fit-content; }
.svc-name { font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.4; }
.svc-card.star .svc-name { color: #fff; }
.svc-desc { font-size: 12px; color: var(--text3); line-height: 1.5; flex: 1; }
.svc-card.star .svc-desc { color: rgba(255,255,255,0.5); }
.svc-toggle { display: flex; align-items: center; gap: 5px; background: none; border: none; cursor: pointer; font-size: 12px; font-weight: 500; color: var(--green); padding: 4px 0; font-family: 'DM Sans', sans-serif; margin-top: 2px; }
.svc-toggle i { transition: transform 0.25s; font-size: 14px; }
.svc-toggle.open i { transform: rotate(180deg); }
.svc-card.star .svc-toggle { color: var(--green-mid); }
.svc-detail { border-top: 0.5px solid var(--border); padding-top: 10px; margin-top: 4px; display: flex; flex-direction: column; gap: 8px; animation: svc-open 0.2s ease; }
.svc-card.star .svc-detail { border-top-color: rgba(255,255,255,0.1); }
@keyframes svc-open { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.svc-detail-item { display: flex; gap: 8px; font-size: 12px; color: var(--text2); line-height: 1.5; }
.svc-card.star .svc-detail-item { color: rgba(255,255,255,0.65); }
.svc-detail-item > i { color: var(--green); font-size: 14px; margin-top: 1px; flex-shrink: 0; }
.svc-card.star .svc-detail-item > i { color: var(--green-mid); }
.svc-detail-item strong { color: var(--text); font-weight: 500; }
.svc-card.star .svc-detail-item strong { color: #fff; }

/* ── BLOG DESTACADO (index) ── */
.blog-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; }
.blog-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: box-shadow 0.2s, border-color 0.2s; }
.blog-card:hover { box-shadow: 0 6px 20px rgba(10,33,64,0.08); border-color: rgba(29,158,117,0.3); }
.blog-card.featured { grid-row: 1 / 3; }
.blog-card-img { background: var(--navy); height: 180px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.blog-card.featured .blog-card-img { height: 240px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-img-placeholder { font-size: 2.5rem; color: rgba(93,202,165,0.35); }
.blog-card-body { padding: 1rem 1.1rem; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.blog-tag { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border-radius: 20px; background: var(--green-light); color: var(--green); width: fit-content; }
.blog-title { font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.45; }
.blog-card.featured .blog-title { font-size: 16px; }
.blog-excerpt { font-size: 13px; color: var(--text2); line-height: 1.6; }
.blog-meta { display: flex; gap: 1rem; margin-top: auto; font-size: 11px; color: var(--text3); padding-top: 6px; }
.blog-meta i { font-size: 13px; vertical-align: -1px; margin-right: 3px; }
.blog-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 1.5rem; font-size: 13px; color: var(--green); font-weight: 500; text-decoration: none; transition: gap 0.2s; }
.blog-more:hover { gap: 10px; }
.blog-secondary { display: flex; flex-direction: column; gap: 14px; }

/* ── TESTIMONIOS ── */
.testimonios-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; align-items: start; }
.video-card { background: var(--navy); border-radius: var(--radius); aspect-ratio: 9/10; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; text-decoration: none; cursor: pointer; }
.video-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(29,158,117,0.2), rgba(10,33,64,0.5)); }
.play-btn { position: relative; width: 58px; height: 58px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; border: 2px solid rgba(255,255,255,0.3); margin-bottom: 1rem; transition: background 0.2s; }
.video-card:hover .play-btn { background: var(--green); }
.video-label { position: relative; font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; }
.video-sublabel { position: relative; font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 4px; }
.testi-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; display: flex; flex-direction: column; gap: 10px; }
.testi-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }
.testi-text { font-size: 13.5px; color: var(--text2); line-height: 1.7; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.testi-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--green-light); color: var(--green); font-size: 13px; font-weight: 500; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-name { font-size: 13px; font-weight: 500; color: var(--text); }
.testi-date { font-size: 11px; color: var(--text3); }
.doctoralia-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--green); font-weight: 500; text-decoration: none; margin-top: 1.5rem; transition: gap 0.2s; }
.doctoralia-link:hover { gap: 10px; }

/* ── ASEGURADORAS ── */
.section-navy .section-tag { color: var(--green-mid); }
.section-navy .section-tag::after { background: var(--green-mid); }
.insurers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px,1fr)); gap: 12px; }
.insurer-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 1.2rem; text-align: center; display: flex; align-items: center; justify-content: center; min-height: 80px; transition: background 0.2s, border-color 0.2s; }
.insurer-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(93,202,165,0.3); }
.insurer-card i { font-size: 22px; color: var(--green-mid); display: block; margin-bottom: 8px; }
.insurer-name { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 500; }
.insurer-logo { width: 100%; max-width: 120px; height: 44px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.85; }
.hospitals-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.5rem; }
.hospital-pill { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 8px 16px; font-size: 13px; color: rgba(255,255,255,0.7); }
.hospital-pill i { color: var(--green-mid); font-size: 15px; }

/* ── VIDEO ── */
.video-embed-wrap { background: var(--navy); border-radius: 20px; aspect-ratio: 16/7; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; margin-top: 1rem; }
.video-embed-wrap::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(29,158,117,0.15), transparent); }
.video-embed-wrap iframe, .video-embed-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: none; }
.video-placeholder { position: relative; text-align: center; color: rgba(255,255,255,0.5); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.video-placeholder i { font-size: 3rem; color: rgba(255,255,255,0.2); }
.video-placeholder p { font-size: 13px; }

/* ── CONTACTO ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; display: flex; flex-direction: column; gap: 8px; }
.contact-card-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 4px; }
.contact-card-icon.green { background: var(--green-light); color: var(--green); }
.contact-card-icon.red   { background: #fde8e8; color: #c0392b; }
.contact-card-icon.navy  { background: #e8edf5; color: var(--navy); }
.contact-card-icon.wa    { background: #e8f5e9; color: #25d366; }
.contact-card-label { font-size: 12px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.07em; }
.contact-card-value { font-size: 1.1rem; font-weight: 500; color: var(--text); }
.contact-card-value a { color: var(--green); text-decoration: none; }
.contact-card-sub { font-size: 12px; color: var(--text3); }
.map-link { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; margin-top: 16px; color: var(--text2); text-decoration: none; font-size: 14px; transition: background 0.2s; }
.map-link:hover { background: var(--green-light); }
.map-link i { font-size: 1.5rem; color: var(--green); }
