:root {
--primary-color: #2c5aa0;
--secondary-color: #4a90e2;
--accent-color: #00c6a7;
--text-dark: #333333;
--text-light: #666666;
--background-light: #f8f9fa;
--white: #ffffff;
--border-color: #e0e0e0;
--shadow: 0 4px 20px rgba(0,0,0,0.1);
--whatsapp-green: #25D366;
--whatsapp-dark: #128C7E;
--instagram-gradient: radial-gradient(circle at 30% 30%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
--tiktok-color: #000000;
--tiktok-cyan: #00f2ea;
--tiktok-pink: #ff0050;
--top-bar-height: 50px;
--header-height: 70px;
--total-header-height: 120px;
} * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-dark);
overflow-x: hidden;
background: var(--white);
}
a {
text-decoration: none;
color: inherit;
transition: color 0.3s ease;
}
img {
max-width: 100%;
height: auto;
display: block;
}
ul, ol {
list-style: none;
} .top-bar {
background: #1565c0;
padding: 10px 0;
font-size: 0.9rem;
border-bottom: none;
position: relative;
top: 0;
left: 0;
width: 100%;
z-index: 1001;
color: #fff;
}
.top-bar__wrap {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}
.top-data {
display: flex;
gap: 24px;
align-items: center;
flex-wrap: wrap;
}
.top-data span {
display: flex;
align-items: center;
gap: 5px;
color: #fff;
}
.top-bar a {
color: #fff;
text-decoration: none;
transition: color 0.3s ease;
}
.top-bar a:hover {
color: rgba(255,255,255,0.8);
}
.top-bar i {
color: #fff;
}
.btn-emergency {
background: #25D366;
color: #fff !important;
padding: 8px 16px;
border-radius: 20px;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 5px;
transition: all 0.3s ease;
text-decoration: none;
}
.btn-emergency:hover {
background: #128C7E;
transform: scale(1.05);
} .site-header {
background: var(--white);
box-shadow: var(--shadow);
position: relative;
width: 100%;
top: 0;
z-index: 1000;
transition: all 0.3s ease;
}
.site-header.scrolled {
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.header__wrap {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
height: 70px;
position: relative;
} .branding {
display: flex;
align-items: center;
}
.custom-logo-link {
display: block;
max-width: 200px;
}
.custom-logo {
width: auto;
height: 60px;
max-width: 100%;
object-fit: contain;
}
.logo-svg {
width: auto;
height: 60px;
max-width: 180px;
object-fit: contain;
}
.header__brand {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
text-decoration: none;
transition: color 0.3s ease;
}
.header__brand:hover {
color: var(--secondary-color);
} .primary-nav {
display: flex;
align-items: center;
gap: 10px;
}
.primary-nav-list {
display: flex;
align-items: center;
gap: 5px;
list-style: none;
margin: 0;
padding: 0;
}
.primary-nav-list > li {
position: relative;
list-style: none;
}
.primary-nav-list > li > a {
padding: 10px 15px;
display: block;
color: #333;
text-decoration: none;
font-weight: 500;
border-radius: 25px;
transition: all 0.3s ease;
}
.primary-nav-list > li > a:hover,
.primary-nav-list > li.current-menu-item > a,
.primary-nav-list > li.current_page_item > a {
background: var(--primary-color);
color: #fff;
transform: translateY(-2px);
} .primary-nav-list .sub-menu {
position: absolute;
top: 100%;
left: 0;
background: #fff;
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
border-radius: 10px;
padding: 10px 0;
min-width: 220px;
display: none;
z-index: 9999;
margin-top: 5px;
list-style: none;
}
.primary-nav-list .menu-item-has-children:hover > .sub-menu,
.primary-nav-list .menu-item-has-children:focus-within > .sub-menu {
display: block;
animation: fadeInDown 0.3s ease;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.primary-nav-list .sub-menu li {
list-style: none;
}
.primary-nav-list .sub-menu a {
padding: 12px 20px;
display: block;
color: #333;
font-weight: 400;
text-decoration: none;
transition: all 0.2s ease;
}
.primary-nav-list .sub-menu a:hover {
background: #f8f9fa;
color: var(--primary-color);
padding-left: 25px;
} .cta-wa {
background: var(--whatsapp-green);
color: #fff !important;
padding: 10px 20px;
border-radius: 25px;
font-weight: 600;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
white-space: nowrap;
max-width: 200px;
}
.cta-wa:hover {
background: var(--whatsapp-dark);
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
} .burger {
display: none;
flex-direction: column;
justify-content: space-around;
width: 30px;
height: 25px;
background: transparent;
border: none;
cursor: pointer;
padding: 0;
z-index: 10002;
position: relative;
}
.burger span {
width: 100%;
height: 3px;
background: #1565c0;
border-radius: 3px;
transition: all 0.3s ease;
transform-origin: center;
}
.burger.active span:nth-child(1) {
transform: rotate(45deg) translate(8px, 8px);
background: #fff;
}
.burger.active span:nth-child(2) {
opacity: 0;
}
.burger.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -7px);
background: #fff;
} .mobile-menu {
position: fixed;
top: 0;
right: -100%;
width: 85%;
max-width: 400px;
height: 100vh;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
box-shadow: -4px 0 20px rgba(0,0,0,0.3);
transition: right 0.4s ease;
overflow-y: auto;
z-index: 10001;
padding: 180px 20px 40px 20px;
}
.mobile-menu.active {
right: 0;
}
.mobile-nav {
list-style: none;
padding: 0;
margin: 0;
}
.mobile-nav li {
margin-bottom: 5px;
list-style: none;
}
.mobile-nav > li > a {
display: block;
padding: 15px 20px;
color: #fff;
text-decoration: none;
font-weight: 500;
font-size: 1.1rem;
border-radius: 8px;
transition: all 0.3s ease;
position: relative;
}
.mobile-nav > li > a:hover {
background: rgba(255,255,255,0.1);
} .mobile-nav .sub-menu {
display: block;
overflow: hidden;
max-height: 0;
transition: max-height 0.3s ease;
background: rgba(0,0,0,0.2);
border-left: 3px solid var(--accent-color);
margin: 5px 0 5px 15px;
padding: 0;
list-style: none;
border-radius: 5px;
}
.mobile-nav .menu-item-has-children.open > .sub-menu {
max-height: 500px;
padding: 5px 0;
}
.mobile-nav .sub-menu li {
list-style: none;
margin-bottom: 0;
}
.mobile-nav .sub-menu a {
display: block;
padding: 12px 20px;
color: rgba(255,255,255,0.9);
text-decoration: none;
font-size: 0.95rem;
transition: all 0.2s ease;
}
.mobile-nav .sub-menu a:hover {
background: rgba(255,255,255,0.05);
padding-left: 25px;
}
.mobile-nav .menu-arrow {
float: right;
color: rgba(255,255,255,0.7);
transition: transform 0.3s ease;
}
.mobile-nav .menu-item-has-children.open > a .menu-arrow {
transform: rotate(180deg);
}
.mobile-contact {
margin-top: 30px;
padding: 20px;
background: rgba(255,255,255,0.1);
border-radius: 10px;
}
.mobile-contact p {
margin: 10px 0;
}
.mobile-contact a {
color: #fff;
text-decoration: none;
font-weight: 500;
display: flex;
align-items: center;
gap: 8px;
}
.mobile-wa-btn,
.mobile-phone-btn,
.mobile-email-btn {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 15px;
background: rgba(255,255,255,0.1);
border-radius: 8px;
margin: 8px 0;
transition: background 0.3s ease;
}
.mobile-wa-btn:hover,
.mobile-phone-btn:hover,
.mobile-email-btn:hover {
background: rgba(255,255,255,0.2);
} body.menu-open {
overflow: hidden;
position: fixed;
width: 100%;
} .hero-section {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: var(--white);
padding: 100px 20px 80px;
position: relative;
overflow: hidden;
}
.hero-content {
max-width: 800px;
margin: 0 auto;
text-align: center;
padding: 0 20px;
}
.hero-content h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 700;
margin-bottom: 20px;
line-height: 1.2;
}
.hero-content p {
font-size: clamp(1rem, 2.5vw, 1.2rem);
margin-bottom: 30px;
opacity: 0.9;
}
.hero-ctas,
.hero-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
} .btn,
.btn-primary,
.btn-outline {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 14px 28px;
border-radius: 50px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}
.btn-primary {
background: var(--accent-color);
color: #fff;
}
.btn-primary:hover {
background: #00a389;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 198, 167, 0.3);
}
.btn-outline {
border: 2px solid #fff;
color: #fff;
background: transparent;
}
.btn-outline:hover {
background: #fff;
color: var(--primary-color);
transform: translateY(-2px);
}
.btn-secondary {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 28px;
border-radius: 8px;
font-weight: 600;
font-size: 1rem;
text-decoration: none;
transition: all 0.3s ease;
cursor: pointer;
border: none;
background-color: var(--whatsapp-green);
color: #ffffff;
}
.btn-secondary:hover {
background-color: var(--whatsapp-dark);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
.btn-tertiary {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 28px;
border-radius: 8px;
font-weight: 600;
font-size: 1rem;
text-decoration: none;
transition: all 0.3s ease;
cursor: pointer;
background-color: #ffffff;
color: var(--primary-color);
border: 2px solid var(--primary-color);
}
.btn-tertiary:hover {
background-color: var(--primary-color);
color: #ffffff;
transform: translateY(-2px);
} .hero-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 28px;
font-weight: 700;
font-size: 1rem;
border-radius: 50px;
text-decoration: none;
cursor: pointer;
transition: all 0.3s ease;
border: 2px solid transparent;
}
.hero-btn-wa {
background: var(--whatsapp-green);
color: #fff;
border-color: var(--whatsapp-green);
}
.hero-btn-wa:hover {
background: var(--whatsapp-dark);
border-color: var(--whatsapp-dark);
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.hero-btn-outline {
background: rgba(255,255,255,0.18);
color: #fff;
border: 2px solid rgba(255,255,255,0.65);
backdrop-filter: blur(6px);
}
.hero-btn-outline:hover {
background: #fff;
color: var(--primary-color);
transform: translateY(-3px);
} .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.section-header {
text-align: center;
margin-bottom: 3rem;
}
.section-header h2 {
color: var(--primary-color);
font-size: clamp(2rem, 4vw, 2.5rem);
margin-bottom: 0.5rem;
}
.section-header p {
color: #6c757d;
font-size: 1.1rem;
} .services-section {
padding: 80px 0;
background: #fff;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}
.service-card {
display: block;
text-decoration: none;
color: inherit;
background: #fff;
padding: 2.5rem 2rem;
border-radius: 15px;
text-align: center;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
border: 2px solid #e9ecef;
transition: all 0.3s ease;
}
.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
border-color: var(--accent-color);
}
.service-icon {
font-size: 3rem;
margin-bottom: 1rem;
color: var(--primary-color);
}
.service-card h3 {
margin: 0.5rem 0 1rem;
color: var(--primary-color);
font-size: 1.5rem;
}
.service-card p {
color: #495057;
line-height: 1.6;
margin-bottom: 1rem;
}
.service-meta {
margin-top: 1rem;
display: flex;
gap: 0.75rem;
justify-content: center;
font-size: 0.9rem;
color: #6c757d;
flex-wrap: wrap;
}
.service-meta i {
color: var(--accent-color);
} .service-hero {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
padding: 60px 20px;
color: #fff;
}
.service-hero-container {
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}
.service-hero-image img {
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
width: 100%;
height: auto;
}
.service-hero-text h1 {
font-size: 2.5rem;
margin-bottom: 15px;
line-height: 1.2;
}
.service-intro {
font-size: 1.15rem;
opacity: 0.95;
margin-bottom: 25px;
line-height: 1.7;
}
.service-content {
padding: 60px 20px;
max-width: 900px;
margin: 0 auto;
}
.service-content h2,
.service-content h3 {
color: var(--primary-color);
margin-top: 30px;
margin-bottom: 15px;
}
.service-content p {
margin-bottom: 15px;
line-height: 1.8;
}
.service-content ul,
.service-content ol {
margin-left: 20px;
margin-bottom: 20px;
}
.service-content li {
margin-bottom: 8px;
list-style: disc;
}
.service-return {
text-align: center;
padding-bottom: 60px;
}
.btn-return {
display: inline-flex;
align-items: center;
gap: 8px;
} .about-section {
padding: 80px 0;
background: #fff;
}
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.about-text {
padding: 0 20px;
}
.about-text h2 {
color: var(--primary-color);
font-size: clamp(1.8rem, 4vw, 2.5rem);
margin-bottom: 1.5rem;
}
.about-text p {
font-size: 1.1rem;
line-height: 1.8;
color: #495057;
margin-bottom: 1.25rem;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-top: 2.5rem;
}
.stat-item {
text-align: center;
padding: 1.5rem;
background: #f8f9fa;
border-radius: 10px;
}
.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--accent-color);
margin-bottom: 0.5rem;
}
.stat-label {
font-size: 0.9rem;
color: #6c757d;
font-weight: 600;
}
.about-image img {
width: 100%;
border-radius: 15px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
} .doctor-section {
padding: 80px 0;
background: #f8f9fa;
}
.doctor-card {
display: grid;
grid-template-columns: 300px 1fr;
gap: 3rem;
background: #fff;
padding: 3rem;
border-radius: 20px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
max-width: 900px;
margin: 0 auto;
}
.doctor-image {
display: flex;
justify-content: center;
align-items: flex-start;
}
.doctor-photo {
width: 100%;
max-width: 280px;
height: auto;
aspect-ratio: 1;
object-fit: cover;
border-radius: 15px;
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.doctor-info h3 {
font-size: 2rem;
color: var(--primary-color);
margin-bottom: 0.5rem;
}
.doctor-specialty {
font-size: 1.2rem;
color: var(--accent-color);
font-weight: 600;
margin-bottom: 1.5rem;
}
.doctor-description {
margin-bottom: 2rem;
}
.doctor-description p {
color: #495057;
line-height: 1.7;
}
.doctor-contact {
display: flex;
flex-direction: column;
gap: 1rem;
}
.contact-item {
display: flex;
align-items: flex-start;
gap: 0.75rem;
}
.contact-item i {
color: var(--accent-color);
margin-top: 0.2rem;
width: 20px;
flex-shrink: 0;
}
.contact-item a {
color: var(--text-dark);
text-decoration: none;
}
.contact-item a:hover {
color: var(--primary-color);
} .doctor-hero-full {
background: linear-gradient(135deg, #1f4dab 0%, #4a90e2 100%);
width: 100%;
padding: 80px 20px 60px;
position: relative;
overflow: hidden;
color: #fff;
margin-bottom: 50px;
}
.doctor-hero-full .doctor-card {
max-width: 1000px;
margin: 0 auto;
display: grid;
grid-template-columns: 280px 1fr;
gap: 40px;
align-items: center;
background: transparent;
box-shadow: none;
padding: 0;
}
.doctor-hero-full .doctor-photo {
width: 280px;
height: 280px;
border-radius: 50%;
object-fit: cover;
box-shadow: 0 15px 45px rgba(0,0,0,0.3);
border: 5px solid rgba(255,255,255,0.3);
}
.doctor-hero-full .doctor-info {
color: #fff;
}
.doctor-hero-full .doctor-info h3 {
font-size: 2.5rem;
color: #fff;
margin-bottom: 10px;
text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.doctor-hero-full .doctor-specialty {
font-size: 1.3rem;
color: rgba(255,255,255,0.95);
font-weight: 500;
margin-bottom: 25px;
}
.doctor-hero-full .doctor-contact {
gap: 12px;
}
.doctor-hero-full .contact-item {
color: #fff;
}
.doctor-hero-full .contact-item i {
color: var(--accent-color);
}
.doctor-hero-full .contact-item a {
color: #fff;
}
.doctor-hero-full .contact-item a:hover {
color: var(--accent-color);
}
.doctor-content {
max-width: 900px;
margin: 0 auto 40px;
padding: 0 20px;
font-size: 1.15rem;
line-height: 1.75;
color: #333;
}
.doctor-content h2,
.doctor-content h3,
.doctor-content h4 {
color: var(--
primary-color);
margin-top: 35px;
margin-bottom: 15px;
}
.doctor-content p {
margin-bottom: 18px;
}
.doctor-content ul {
margin-left: 20px;
margin-bottom: 20px;
}
.doctor-content li {
margin-bottom: 10px;
list-style: disc;
}
.doctor-cta {
padding: 40px 20px 60px;
background: #f8f9fa;
} .testimonials-section {
padding: 80px 0;
background: #fff;
}
.testimonials-slider {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.testimonial-card {
background: #f8f9fa;
padding: 2rem;
border-radius: 15px;
text-align: center;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.testimonial-stars {
color: #ffc107;
margin-bottom: 1.5rem;
font-size: 1.2rem;
}
.testimonial-card blockquote {
font-style: italic;
font-size: 1.05rem;
color: #212529;
margin-bottom: 1.5rem;
line-height: 1.6;
}
.testimonial-card cite {
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
font-style: normal;
}
.testimonial-avatar {
width: 48px;
height: 48px;
border-radius: 50%;
object-fit: cover;
} .appointment-section {
padding: 80px 0;
background: #f8f9fa;
}
.appointment-form-wrapper {
max-width: 800px;
margin: 0 auto;
}
.appointment-options {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}
.option-card {
background: #fff;
padding: 40px 30px;
border-radius: 15px;
text-align: center;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
transition: transform 0.3s ease;
}
.option-card:hover {
transform: translateY(-5px);
}
.option-card i {
font-size: 3rem;
color: var(--primary-color);
margin-bottom: 20px;
}
.option-card h3 {
color: var(--primary-color);
margin-bottom: 15px;
}
.option-card p {
color: #666;
margin-bottom: 25px;
line-height: 1.6;
} .cta-box {
background: linear-gradient(135deg, #004c99 0%, #003366 100%);
border-radius: 12px;
padding: 30px;
margin: 40px 0;
text-align: center;
box-shadow: 0 6px 25px rgba(0, 76, 153, 0.3);
border: 2px solid rgba(255, 255, 255, 0.2);
}
.cta-box h3,
.cta-box h4 {
color: #ffffff !important;
font-size: 1.8rem;
margin-bottom: 15px;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
font-weight: 700;
}
.cta-box p {
color: #ffffff !important;
font-size: 1.15rem;
margin-bottom: 25px;
line-height: 1.6;
opacity: 1;
}
.cta-box ul,
.cta-box ol {
color: #ffffff !important;
text-align: left;
margin-left: 30px;
}
.cta-box li {
color: #ffffff !important;
margin-bottom: 8px;
}
.cta-box a:not(.cgf-btn):not(.btn) {
color: #90caf9 !important;
text-decoration: underline;
}
.cta-box a:not(.cgf-btn):not(.btn):hover {
color: #ffffff !important;
}
.cta-buttons,
.cta-row {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
} .cgf-cta {
background: linear-gradient(135deg, #f8f9fa, #e9ecef);
padding: 30px;
border-radius: 15px;
text-align: center;
margin: 35px 0;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.cgf-cta-title {
font-size: 1.4rem;
font-weight: 600;
color: var(--primary-color);
margin-bottom: 20px;
}
.cgf-cta-row {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
} .cgf-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 14px 28px;
border-radius: 8px;
font-weight: 600;
font-size: 1rem;
text-decoration: none;
transition: all 0.3s ease;
border: none;
cursor: pointer;
max-width: 320px;
flex: 1 1 auto;
}
.cgf-btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.cgf-btn.cgf-wa,
.cgf-wa {
background: var(--whatsapp-green);
color: #ffffff !important;
}
.cgf-btn.cgf-wa:hover,
.cgf-wa:hover {
background: var(--whatsapp-dark);
}
.cgf-btn.cgf-dark,
.cgf-dark {
background: var(--primary-color);
color: #ffffff !important;
}
.cgf-btn.cgf-dark:hover,
.cgf-dark:hover {
background: #1e3f6f;
}
.cgf-btn.cgf-blue,
.cgf-blue {
background: var(--secondary-color);
color: #ffffff !important;
}
.cgf-btn.cgf-blue:hover,
.cgf-blue:hover {
background: #357abd;
} .page-wrapper {
max-width: 900px;
margin: 0 auto;
padding: 40px 20px;
}
.page-header {
margin-bottom: 30px;
padding-bottom: 20px;
border-bottom: 3px solid var(--accent-color);
}
.page-header .entry-title {
color: var(--primary-color);
font-size: 2.5rem;
margin: 0;
}
.page-content {
font-size: 1.1rem;
line-height: 1.8;
}
.page-content h2,
.page-content h3,
.page-content h4 {
color: var(--primary-color);
margin-top: 30px;
margin-bottom: 15px;
}
.page-content p {
margin-bottom: 18px;
}
.page-content ul,
.page-content ol {
margin-left: 25px;
margin-bottom: 20px;
}
.page-content li {
margin-bottom: 8px;
list-style: disc;
} .site-footer {
background: #0f1b20;
color: #f2f6f7;
padding: 50px 0 25px;
margin-top: 40px;
}
.footer-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}
.footer-section {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.footer-section h3 {
margin-bottom: 12px;
color: #00d084;
font-size: 1.15rem;
}
.footer-section p,
.footer-section a {
margin-bottom: 8px;
color: #e8eff0;
font-size: 1rem;
text-decoration: none;
line-height: 1.6;
}
.footer-section a:hover {
color: #00d084;
} .footer-social-section {
grid-column: 1 / -1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-social-section h3 {
text-align: center;
width: 100%;
margin-bottom: 15px;
}
.footer-social-icons {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 18px;
margin: 10px auto 0;
flex-wrap: wrap;
}
.social-icon {
width: 55px;
height: 55px;
min-width: 55px;
min-height: 55px;
max-width: 55px;
max-height: 55px;
border-radius: 50% !important;
display: flex;
justify-content: center;
align-items: center;
font-size: 26px;
color: #fff;
transition: all 0.3s ease;
flex-shrink: 0;
text-decoration: none;
overflow: hidden;
}
.social-icon i {
color: #ffffff !important;
font-size: 26px;
line-height: 1;
}
.si-fb {
background: #1877F2;
}
.si-ig {
background: var(--instagram-gradient);
}
.si-wa {
background: var(--whatsapp-green);
}
.si-li {
background: #0077B5;
}
.si-tt {
background: var(--tiktok-color);
position: relative;
}
.si-tt::before {
content: '';
position: absolute;
inset: 0;
border-radius: 50%;
background: linear-gradient(45deg, var(--tiktok-cyan), var(--tiktok-pink));
opacity: 0;
transition: opacity 0.3s ease;
}
.si-tt:hover::before {
opacity: 0.3;
}
.social-icon:hover {
transform: translateY(-5px) scale(1.1);
box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.footer-bottom {
text-align: center;
margin-top: 25px;
padding-top: 15px;
border-top: 1px solid rgba(255,255,255,0.1);
color: #cbd3d6;
font-size: 0.95rem;
} .floating-icons {
position: fixed;
right: 20px;
bottom: 20px;
display: flex;
flex-direction: column;
gap: 12px;
z-index: 900;
pointer-events: all;
}
.floating-icon {
width: 60px;
height: 60px;
min-width: 60px;
min-height: 60px;
max-width: 60px;
max-height: 60px;
border-radius: 50% !important;
display: flex;
justify-content: center;
align-items: center;
font-size: 28px;
color: #fff;
text-decoration: none;
box-shadow: 0 4px 15px rgba(0,0,0,0.3);
transition: all 0.3s ease;
position: relative;
animation: floatPulse 2s infinite;
overflow: hidden;
cursor: pointer;
}
.floating-icon i {
color: #ffffff !important;
font-size: 28px;
line-height: 1;
position: relative;
z-index: 2;
}
.floating-icon::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
border: 2px solid currentColor;
opacity: 0;
animation: ripple 2s infinite;
}
.floating-icon.float-wa,
.float-wa {
background: linear-gradient(135deg, var(--whatsapp-green) 0%, var(--whatsapp-dark) 100%);
}
.floating-icon.float-ig,
.float-ig {
background: var(--instagram-gradient);
}
.floating-icon:hover {
transform: scale(1.15) rotate(5deg);
box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}
.floating-icon:active {
transform: scale(0.95);
}
@keyframes floatPulse {
0%, 100% {
box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
50% {
box-shadow: 0 6px 25px rgba(0,0,0,0.5);
}
}
@keyframes ripple {
0% {
transform: scale(1);
opacity: 0.5;
}
100% {
transform: scale(1.5);
opacity: 0;
}
}
.floating-medical-icons {
position: fixed;
right: 20px;
bottom: 20px;
display: flex;
flex-direction: column;
gap: 12px;
z-index: 900;
} .scroll-banner,
.marquee-bar,
.franja-servicios {
width: 100%;
overflow: hidden;
background: #1f4dab;
padding: 12px 0;
margin: 0;
}
.scroll-banner-track,
.marquee-track,
.franja-slider {
display: flex;
width: max-content;
animation: scroll-left 25s linear infinite;
white-space: nowrap;
}
.scroll-banner span,
.marquee-track span,
.franja-slider span {
font-size: 1.1rem;
color: #fff;
font-weight: 600;
padding-right: 50px;
white-space: nowrap;
}
@keyframes scroll-left {
from {
transform: translateX(0);
}
to {
transform: translateX(-50%);
}
}
.scroll-banner-secondary {
background: var(--secondary-color);
}
.franja-servicios {
background: #f4f4f4;
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
.franja-slider span {
color: #333;
padding: 0 25px;
}
.marquee-bar {
background: #f5f5f5;
}
.marquee-track span {
color: #444;
font-size: 1rem;
margin-right: 40px;
} .medical-article {
max-width: 1000px;
margin: 0 auto;
padding: 60px 20px;
background: #ffffff;
}
.breadcrumb-wrapper {
background: #f8f9fa;
padding: 15px 0;
border-bottom: 1px solid #e0e0e0;
}
.breadcrumb {
display: flex;
gap: 8px;
font-size: 0.9rem;
color: #666;
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
}
.breadcrumb a {
color: var(--primary-color);
text-decoration: none;
}
.breadcrumb a:hover {
color: var(--accent-color);
}
.breadcrumb .current {
font-weight: 600;
color: #333;
}
.article-header {
text-align: center;
margin-bottom: 40px;
}
.article-title {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 10px;
line-height: 1.3;
font-weight: 700;
}
.article-meta {
background: #f8f9fa;
padding: 15px;
border-radius: 8px;
font-size: 0.95rem;
color: #555;
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.article-meta i {
color: var(--primary-color);
}
.article-featured-image {
margin: 30px 0;
text-align: center;
}
.article-featured-image img {
max-width: 100%;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.article-content {
font-size: 1.1rem;
line-height: 1.8;
}
.article-content h2 {
color: var(--primary-color);
border-bottom: 3px solid var(--accent-color);
font-size: 1.8rem;
margin-top: 50px;
padding-bottom: 10px;
}
.article-content img {
max-width: 100%;
border-radius: 12px;
margin: 20px 0;
}
.related-articles {
background: #f8f9fa;
padding: 40px;
margin-top: 60px;
border-radius: 15px;
}
.related-grid {
display: grid;
gap: 25px;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.related-card {
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.related-card:hover {
transform: translateY(-5px);
}
.related-card img {
width: 100%;
height: 200px;
object-fit: cover;
}
.related-card h3 {
padding: 15px;
font-size: 1.1rem;
color: var(--primary-color);
}
.post-navigation {
margin-top: 50px;
padding-top: 30px;
border-top: 2px solid #e0e0e0;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 15px;
}
.post-navigation a {
background: var(--primary-color);
padding: 12px 24px;
border-radius: 8px;
color: white;
text-decoration: none;
transition: background 0.3s ease;
}
.post-navigation a:hover {
background: #1d3d70;
} @media (max-width: 991px) {
.top-bar {
position: relative !important;
padding: 12px 0;
}
.site-header {
position: relative !important;
top: 0 !important;
}
.header__wrap {
height: 70px;
}
.primary-nav {
display: none !important;
}
.burger {
display: flex !important;
position: absolute !important;
right: 20px !important;
top: 50% !important;
transform: translateY(-50%) !important;
z-index: 10002 !important;
} .mobile-menu {
padding-top: 180px !important;
}
.hero-section {
margin-top: 0;
padding-top: 80px;
}
.service-hero {
margin-top: 0;
}
.doctor-hero-full {
margin-top: 0;
}
.breadcrumb-wrapper {
margin-top: 0;
}
.about-content {
grid-template-columns: 1fr;
}
.doctor-card {
grid-template-columns: 1fr;
text-align: center;
}
.doctor-card .doctor-contact {
align-items: center;
}
.doctor-hero-full .doctor-card {
grid-template-columns: 1fr;
text-align: center;
}
.doctor-hero-full .doctor-photo {
margin: 0 auto;
}
.service-hero-container {
grid-template-columns: 1fr;
text-align: center;
}
.footer-container {
grid-template-columns: 1fr 1fr;
}
.floating-icons {
right: 15px;
bottom: 15px;
}
.floating-icon {
width: 55px;
height: 55px;
min-width: 55px;
min-height: 55px;
max-width: 55px;
max-height: 55px;
font-size: 24px;
}
.floating-icon i {
font-size: 24px;
}
} @media (max-width: 600px) {
.top-bar__wrap {
justify-content: center;
text-align: center;
}
.top-data {
flex-direction: column;
gap: 8px;
} .mobile-menu {
padding-top: 200px !important;
}
.footer-container {
grid-template-columns: 1fr;
text-align: center;
}
.footer-section {
align-items: center;
}
.hero-content h1 {
font-size: 2rem;
}
.hero-content p {
font-size: 1rem;
}
.services-grid {
grid-template-columns: 1fr;
}
.stats-grid {
grid-template-columns: 1fr;
gap: 1rem;
}
.hero-buttons,
.hero-ctas {
flex-direction: column;
align-items: center;
}
.hero-btn,
.btn,
.btn-primary,
.btn-secondary {
width: 100%;
max-width: 300px;
}
.cgf-btn {
width: 100%;
max-width: 100%;
}
.doctor-hero-full .doctor-info h3 {
font-size: 2rem;
}
.doctor-hero-full .doctor-photo {
width: 200px;
height: 200px;
}
.article-title {
font-size: 1.8rem;
}
.page-header .entry-title {
font-size: 2rem;
}
.floating-icons {
right: 10px;
bottom: 10px;
gap: 10px;
}
.floating-icon {
width: 50px;
height: 50px;
min-width: 50px;
min-height: 50px;
max-width: 50px;
max-height: 50px;
font-size: 22px;
}
.floating-icon i {
font-size: 22px;
}
.footer-social-icons {
gap: 12px;
}
.social-icon {
width: 50px;
height: 50px;
min-width: 50px;
min-height: 50px;
max-width: 50px;
max-height: 50px;
font-size: 22px;
}
.social-icon i {
font-size: 22px;
}
.burger {
right: 15px !important;
}
.header__wrap {
padding: 0 15px;
padding-right: 60px;
}
} .text-center {
text-align: center;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }
.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }
.pt-4 { padding-top: 40px; }
.pt-5 { padding-top: 50px; }
.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }
.pb-4 { padding-bottom: 40px; }
.pb-5 { padding-bottom: 50px; } @media print {
.top-bar,
.site-header,
.floating-icons,
.mobile-menu,
.burger,
.cta-wa,
.hero-buttons,
.btn,
.cgf-btn {
display: none !important;
}
body {
font-size: 12pt;
line-height: 1.5;
color: #000;
background: #fff;
}
.hero-section,
.service-hero,
.doctor-hero-full {
background: #f5f5f5 !important;
color: #000 !important;
margin-top: 0 !important;
padding: 20px !important;
}
}  .hero-home {
background-image: url(//clinicasagradafamiliahn.com/wp-content/themes/clinica-sagrada-familia/images/hero-doctor-2025.webp) !important;
background-size: cover !important;
background-position: center center !important;
background-repeat: no-repeat !important;
} @media (max-width: 768px) {
.hero-home {
background-image: url(//clinicasagradafamiliahn.com/wp-content/themes/clinica-sagrada-familia/images/hero-doctor-mobile-2025.webp) !important;
background-position: center top !important;
background-size: cover !important;
}
.hero-home .hero-overlay {
background: linear-gradient(
to bottom,
rgba(26, 82, 118, 0.92) 0%,
rgba(26, 82, 118, 0.88) 40%,
rgba(26, 82, 118, 0.85) 100%
) !important;
}
.hero-home .hero-content {
text-align: center;
padding: 120px 20px 60px;
}
.hero-home .hero-cta {
display: flex;
flex-direction: column;
gap: 14px;
width: 100%;
}
.hero-home .btn-cta {
width: 100%;
min-height: 54px;
font-size: 1rem;
}
}:root {
--doctor-primary: #1f4dab;
--doctor-secondary: #4a90e2;
--doctor-accent: #00c6a7;
--doctor-text: #333333;
--doctor-light: #f8f9fa;
--doctor-white: #ffffff;
--doctor-shadow: 0 10px 30px rgba(0,0,0,0.15);
--whatsapp-green: #25D366;
--whatsapp-dark: #128C7E;
} .doctor-hero-full {
background: linear-gradient(135deg, var(--doctor-primary) 0%, var(--doctor-secondary) 100%);
width: 100%;
padding: 80px 20px 60px;
position: relative;
overflow: hidden;
color: var(--doctor-white);
text-align: left;
margin-top: 125px;
} .doctor-hero-full::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 80%;
height: 200%;
background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
pointer-events: none;
z-index: 0;
}
.doctor-hero-full::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 100px;
background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
pointer-events: none;
z-index: 0;
} .doctor-hero-full .doctor-card {
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: 300px 1fr;
gap: 50px;
align-items: center;
z-index: 2;
position: relative;
background: transparent;
box-shadow: none;
padding: 0;
border-radius: 0;
} .hero-container {
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: 300px 1fr;
gap: 50px;
align-items: center;
z-index: 2;
position: relative;
} .doctor-hero-full .doctor-image {
display: flex;
justify-content: center;
align-items: center;
}
.doctor-hero-full .doctor-photo {
width: 280px;
height: 280px;
min-width: 280px;
min-height: 280px;
border-radius: 50% !important;
overflow: hidden;
object-fit: cover;
display: block;
position: relative;
z-index: 1;
transition: transform 0.35s ease;
box-shadow: 0 15px 45px rgba(0,0,0,0.3);
border: 5px solid rgba(255,255,255,0.3);
}
.doctor-hero-full .doctor-photo:hover {
transform: scale(1.05);
} .doctor-avatar-hero {
width: 280px;
height: 280px;
border-radius: 50%;
overflow: visible;
margin: 0 auto;
position: relative;
display: flex;
justify-content: center;
align-items: center;
} .doctor-avatar-hero::before {
content: "";
position: absolute;
inset: -12px;
border-radius: 50%;
background: linear-gradient(45deg, rgba(255,255,255,0.35), rgba(255,255,255,0.08));
animation: pulseDoctor 3s ease-in-out infinite;
z-index: 0;
}
@keyframes pulseDoctor {
0%, 100% { 
transform: scale(1); 
opacity: 0.6; 
}
50% { 
transform: scale(1.10); 
opacity: 0.9; 
}
} .doctor-avatar-hero img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
display: block;
z-index: 1;
position: relative;
transition: transform 0.35s ease;
box-shadow: 0 15px 45px rgba(0,0,0,0.3);
border: 5px solid rgba(255,255,255,0.3);
}
.doctor-avatar-hero:hover img {
transform: scale(1.05);
} .doctor-hero-full .doctor-info {
color: var(--doctor-white);
z-index: 2;
position: relative;
}
.doctor-hero-full .doctor-info h3,
.hero-content h1 {
font-size: 2.8rem;
font-weight: 700;
margin-bottom: 12px;
color: #ffffff !important;
line-height: 1.15;
text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.doctor-hero-full .doctor-specialty,
.hero-specialties {
font-size: 1.3rem;
margin-bottom: 25px;
color: rgba(255,255,255,0.95);
font-weight: 500;
display: flex;
align-items: center;
gap: 10px;
}
.doctor-hero-full .doctor-specialty i {
color: var(--doctor-accent);
} .doctor-hero-full .doctor-contact {
display: flex;
flex-direction: column;
gap: 12px;
margin-top: 20px;
}
.doctor-hero-full .contact-item {
display: flex;
align-items: center;
gap: 12px;
color: var(--doctor-white);
font-size: 1.05rem;
}
.doctor-hero-full .contact-item i {
color: var(--doctor-accent);
font-size: 1.1rem;
width: 24px;
text-align: center;
flex-shrink: 0;
}
.doctor-hero-full .contact-item a {
color: var(--doctor-white);
text-decoration: none;
transition: color 0.3s ease;
}
.doctor-hero-full .contact-item a:hover {
color: var(--doctor-accent);
} .hero-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
margin-top: 25px;
}
.hero-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 14px 28px;
font-weight: 700;
font-size: 1rem;
border-radius: 50px;
text-decoration: none;
cursor: pointer;
transition: all 0.3s ease;
border: 2px solid transparent;
}
.hero-btn i {
font-size: 1.1rem;
} .hero-btn-wa {
background: var(--whatsapp-green);
color: var(--doctor-white);
border-color: var(--whatsapp-green);
}
.hero-btn-wa:hover {
background: var(--whatsapp-dark);
border-color: var(--whatsapp-dark);
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
} .hero-btn-outline {
background: rgba(255,255,255,0.15);
color: var(--doctor-white);
border: 2px solid rgba(255,255,255,0.6);
backdrop-filter: blur(6px);
}
.hero-btn-outline:hover {
background: var(--doctor-white);
color: var(--doctor-primary);
border-color: var(--doctor-white);
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(255,255,255,0.3);
} .doctor-scroll-banner,
.scroll-banner {
width: 100%;
overflow: hidden;
background: var(--doctor-primary);
padding: 14px 0;
margin: 0;
position: relative;
}
.doctor-scroll-banner .scroll-track,
.scroll-banner-track {
display: flex;
width: max-content;
animation: scrollLeftDoctor 25s linear infinite;
white-space: nowrap;
}
.doctor-scroll-banner span,
.scroll-banner span {
font-size: 1.1rem;
color: var(--doctor-white);
font-weight: 600;
padding-right: 60px;
white-space: nowrap;
display: inline-flex;
align-items: center;
gap: 10px;
}
.doctor-scroll-banner span i,
.scroll-banner span i {
color: var(--doctor-accent);
font-size: 1.2rem;
}
@keyframes scrollLeftDoctor {
from {
transform: translateX(0);
}
to {
transform: translateX(-50%);
}
} .doctor-scroll-banner:hover .scroll-track,
.scroll-banner:hover .scroll-banner-track {
animation-play-state: paused;
} .doctor-scroll-banner.secondary {
background: var(--doctor-secondary);
} .doctor-content {
max-width: 900px;
margin: 0 auto;
padding: 50px 24px;
font-size: 1.15rem;
line-height: 1.75;
color: var(--doctor-text);
}
.doctor-content h2 {
font-size: 2rem;
margin-top: 45px;
margin-bottom: 20px;
font-weight: 700;
color: var(--doctor-primary);
border-bottom: 3px solid var(--doctor-accent);
padding-bottom: 10px;
}
.doctor-content h3 {
font-size: 1.65rem;
margin-top: 40px;
margin-bottom: 15px;
font-weight: 700;
color: var(--doctor-primary);
}
.doctor-content h4 {
font-size: 1.35rem;
margin-top: 30px;
margin-bottom: 12px;
font-weight: 600;
color: var(--doctor-secondary);
}
.doctor-content p {
margin-bottom: 18px;
text-align: justify;
} .doctor-content ul,
.doctor-content ol {
margin-left: 25px;
padding-left: 10px;
margin-bottom: 25px;
}
.doctor-content ul li,
.doctor-content ol li {
margin-bottom: 10px;
line-height: 1.7;
}
.doctor-content ul li {
list-style: disc;
}
.doctor-content ol li {
list-style: decimal;
} .doctor-content ul li::marker {
color: var(--doctor-accent);
font-size: 1.2rem;
} .doctor-content img {
max-width: 100%;
height: auto;
border-radius: 12px;
margin: 25px 0;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
} .doctor-content blockquote {
background: var(--doctor-light);
border-left: 4px solid var(--doctor-accent);
padding: 20px 25px;
margin: 30px 0;
border-radius: 0 10px 10px 0;
font-style: italic;
color: #555;
}
.doctor-content blockquote p {
margin-bottom: 0;
} .content-main {
max-width: 900px;
margin: 0 auto;
padding: 0 24px;
font-size: 1.12rem;
line-height: 1.75;
color: #1a1a1a;
}
.doctor-content-wrapper {
max-width: 900px;
margin: 50px auto;
padding: 45px 40px;
background: var(--doctor-white);
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.06);
font-size: 1.15rem;
line-height: 1.75;
color: #2a2a2a;
}
.doctor-content-wrapper.elegant {
border: 1px solid #e9ecef;
}
.doctor-content-wrapper h2 {
font-size: 2rem;
margin: 40px 0 20px;
color: var(--doctor-primary);
font-weight: 700;
display: flex;
gap: 12px;
align-items: center;
border-bottom: 3px solid var(--doctor-accent);
padding-bottom: 12px;
}
.doctor-content-wrapper h3 {
font-size: 1.65rem;
margin: 35px 0 15px;
color: var(--doctor-primary);
font-weight: 700;
display: flex;
gap: 10px;
align-items: center;
}
.doctor-content-wrapper h3 i {
color: var(--doctor-accent);
} .styled-list {
padding-left: 0;
margin: 15px 0 30px;
list-style: none;
}
.styled-list li {
padding: 10px 0 10px 30px;
margin-bottom: 8px;
position: relative;
border-bottom: 1px solid #f0f0f0;
}
.styled-list li:last-child {
border-bottom: none;
}
.styled-list li::before {
content: "✓";
position: absolute;
left: 0;
color: var(--doctor-accent);
font-weight: bold;
font-size: 1.1rem;
} .doctor-cta {
background: var(--doctor-light);
padding: 50px 20px;
margin-top: 0;
}
.doctor-cta .container {
max-width: 900px;
margin: 0 auto;
}
.doctor-cta .cta-box {
background: linear-gradient(135deg, #004c99 0%, #003366 100%);
border-radius: 15px;
padding: 40px;
text-align: center;
box-shadow: 0 10px 30px rgba(0, 76, 153, 0.3);
}
.doctor-cta .cta-box h3 {
color: #ffffff !important;
font-size: 1.8rem;
margin-bottom: 15px;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.doctor-cta .cta-box p {
color: #ffffff !important;
font-size: 1.15rem;
margin-bottom: 25px;
opacity: 1;
}
.doctor-cta .cta-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
} .doctor-info-card {
background: var(--doctor-white);
border-radius: 15px;
padding: 30px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
margin: 30px 0;
}
.doctor-info-card h4 {
color: var(--doctor-primary);
font-size: 1.3rem;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 10px;
}
.doctor-info-card h4 i {
color: var(--doctor-accent);
}
.doctor-info-list {
list-style: none;
padding: 0;
margin: 0;
}
.doctor-info-list li {
padding: 12px 0;
border-bottom: 1px solid #eee;
display: flex;
align-items: center;
gap: 12px;
}
.doctor-info-list li:last-child {
border-bottom: none;
}
.doctor-info-list li i {
color: var(--doctor-accent);
width: 20px;
text-align: center;
} @media (max-width: 992px) {
.doctor-hero-full {
padding: 70px 20px;
text-align: center;
margin-top: 70px;
}
.doctor-hero-full .doctor-card,
.hero-container {
grid-template-columns: 1fr;
gap: 35px;
text-align: center;
}
.doctor-hero-full .doctor-image {
justify-content: center;
}
.doctor-hero-full .doctor-photo,
.doctor-avatar-hero {
width: 240px;
height: 240px;
min-width: 240px;
min-height: 240px;
margin: 0 auto;
}
.doctor-hero-full .doctor-info h3,
.hero-content h1 {
font-size: 2.3rem;
}
.doctor-hero-full .doctor-specialty,
.hero-specialties {
justify-content: center;
}
.doctor-hero-full .doctor-contact {
align-items: center;
}
.hero-buttons {
justify-content: center;
}
.doctor-content {
padding: 40px 20px;
}
.doctor-content-wrapper {
margin: 30px 20px;
padding: 30px 25px;
}
.doctor-scroll-banner span,
.scroll-banner span {
font-size: 1rem;
padding-right: 50px;
}
} @media (max-width: 600px) {
.doctor-hero-full {
padding: 50px 15px;
}
.doctor-hero-full .doctor-photo,
.doctor-avatar-hero {
width: 200px;
height: 200px;
min-width: 200px;
min-height: 200px;
}
.doctor-hero-full .doctor-info h3,
.hero-content h1 {
font-size: 1.9rem;
}
.doctor-hero-full .doctor-specialty,
.hero-specialties {
font-size: 1.1rem;
flex-direction: column;
gap: 5px;
}
.hero-btn {
width: 100%;
padding: 12px 22px;
font-size: 0.95rem;
justify-content: center;
}
.hero-buttons {
flex-direction: column;
width: 100%;
}
.doctor-content {
padding: 30px 15px;
font-size: 1.05rem;
}
.doctor-content h2 {
font-size: 1.6rem;
}
.doctor-content h3 {
font-size: 1.4rem;
}
.doctor-content-wrapper {
padding: 25px 18px;
margin: 20px 15px;
font-size: 1.05rem;
}
.doctor-content-wrapper h2 {
font-size: 1.5rem;
}
.doctor-content-wrapper h3 {
font-size: 1.3rem;
}
.doctor-cta .cta-box {
padding: 30px 20px;
}
.doctor-cta .cta-box h3 {
font-size: 1.5rem;
}
.doctor-cta .cta-buttons {
flex-direction: column;
}
.doctor-cta .cta-buttons .cgf-btn {
width: 100%;
}
.content-main {
padding: 0 18px;
font-size: 1.02rem;
}
.content-main h3 {
font-size: 1.3rem;
margin-top: 28px;
}
.doctor-scroll-banner span,
.scroll-banner span {
font-size: 0.95rem;
padding-right: 40px;
}
.doctor-scroll-banner span i,
.scroll-banner span i {
font-size: 1rem;
}
} @media print {
.doctor-hero-full {
background: #f5f5f5 !important;
color: #000 !important;
margin-top: 0 !important;
padding: 20px !important;
}
.doctor-hero-full .doctor-info h3 {
color: #000 !important;
text-shadow: none !important;
}
.hero-buttons,
.doctor-cta,
.doctor-scroll-banner,
.scroll-banner {
display: none !important;
}
.doctor-content {
max-width: 100%;
padding: 20px;
}
}.hero-home {
position: relative !important;
width: 100% !important;
min-height: 85vh !important;
display: flex !important;
align-items: center !important;
justify-content: flex-start !important;
overflow: hidden !important;
background-image: url(https://clinicasagradafamiliahn.com/wp-content/themes/clinica-sagrada-familia/images/hero-doctor-2025.webp) !important;
background-size: cover !important;
background-position: top center !important;
background-repeat: no-repeat !important;
} .hero-overlay {
position: absolute !important;
top: 0 !important;
left: 0 !important;
width: 100% !important;
height: 100% !important;
background: linear-gradient(
90deg,
rgba(26, 82, 118, 0.95) 0%,
rgba(26, 82, 118, 0.85) 35%,
rgba(26, 82, 118, 0.6) 60%,
rgba(26, 82, 118, 0.3) 80%,
transparent 100%
) !important;
z-index: 1 !important;
} .hero-content {
position: relative !important;
z-index: 2 !important;
max-width: 650px !important;
padding: 60px 5% !important;
margin-left: 5% !important;
color: #ffffff !important;
} .hero-title {
font-family: 'Montserrat', sans-serif !important;
font-size: clamp(2rem, 5vw, 3.2rem) !important;
font-weight: 700 !important;
line-height: 1.2 !important;
margin: 0 0 16px 0 !important;
color: #ffffff !important;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
} .hero-subtitle {
font-family: 'Open Sans', sans-serif !important;
font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important;
font-weight: 500 !important;
line-height: 1.4 !important;
margin: 0 0 20px 0 !important;
color: rgba(255, 255, 255, 0.95) !important;
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) !important;
} .hero-description {
font-family: 'Open Sans', sans-serif !important;
font-size: clamp(0.95rem, 1.8vw, 1.1rem) !important;
font-weight: 400 !important;
line-height: 1.7 !important;
margin: 0 0 32px 0 !important;
color: rgba(255, 255, 255, 0.9) !important;
max-width: 550px !important;
} .hero-cta {
display: flex !important;
flex-wrap: wrap !important;
gap: 16px !important;
align-items: center !important;
} .btn-cta {
display: inline-flex !important;
align-items: center !important;
justify-content: center !important;
gap: 10px !important;
padding: 16px 32px !important;
font-family: 'Open Sans', sans-serif !important;
font-size: 1rem !important;
font-weight: 600 !important;
text-decoration: none !important;
border-radius: 6px !important;
transition: all 0.3s ease !important;
cursor: pointer !important;
border: 2px solid transparent !important;
} .btn-cta-primary {
color: #154360 !important;
background-color: #ffffff !important;
border-color: #ffffff !important;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}
.btn-cta-primary:hover {
background-color: transparent !important;
color: #ffffff !important;
transform: translateY(-2px) !important;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
} .btn-cta-whatsapp {
color: #ffffff !important;
background-color: #25D366 !important;
border-color: #25D366 !important;
}
.btn-cta-whatsapp:hover {
background-color: #1ebe5d !important;
border-color: #1ebe5d !important;
transform: translateY(-2px) !important;
box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3) !important;
}
.btn-cta-whatsapp svg {
flex-shrink: 0 !important;
} @media (max-width: 1024px) {
.hero-home {
min-height: 75vh !important;
background-position: center right !important;
}
.hero-overlay {
background: linear-gradient(
90deg,
rgba(26, 82, 118, 0.95) 0%,
rgba(26, 82, 118, 0.85) 50%,
rgba(26, 82, 118, 0.7) 100%
) !important;
}
.hero-content {
max-width: 550px !important;
padding: 50px 5% !important;
}
} @media (max-width: 768px) {
.hero-home {
min-height: 100vh !important;
min-height: 100dvh !important;
align-items: flex-start !important;
justify-content: center !important;
background-image: url(https://clinicasagradafamiliahn.com/wp-content/themes/clinica-sagrada-familia/images/hero-doctor-mobile-2025.webp) !important;
background-position: center top !important;
background-size: cover !important;
} }
}
.hero-overlay {
background: linear-gradient(
180deg,
rgba(26, 82, 118, 0.92) 0%,
rgba(26, 82, 118, 0.88) 40%,
rgba(26, 82, 118, 0.85) 100%
) !important;
}
.hero-content {
max-width: 100% !important;
margin-left: 0 !important;
padding: 120px 20px 60px !important;
text-align: center !important;
}
.hero-title {
font-size: 2rem !important;
line-height: 1.2 !important;
}
.hero-subtitle {
font-size: 1.05rem !important;
}
.hero-description {
font-size: 0.95rem !important;
margin-bottom: 28px !important;
max-width: 100% !important;
}
.hero-cta {
flex-direction: column !important;
align-items: stretch !important;
gap: 14px !important;
width: 100% !important;
}
.btn-cta {
width: 100% !important;
justify-content: center !important;
padding: 16px 24px !important;
min-height: 52px !important;
font-size: 1rem !important;
}
} @media (max-width: 480px) {
.hero-content {
padding: 100px 16px 50px !important;
}
.hero-title {
font-size: 1.75rem !important;
}
.hero-subtitle {
font-size: 1rem !important;
}
.hero-description {
font-size: 0.9rem !important;
}
} .container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.section-header {
text-align: center;
margin-bottom: 50px;
}
.section-title {
font-family: 'Montserrat', sans-serif;
font-size: clamp(1.6rem, 3.5vw, 2.2rem);
font-weight: 700;
color: #2c3e50;
margin: 0 0 16px 0;
line-height: 1.3;
}
.section-description {
font-family: 'Open Sans', sans-serif;
font-size: 1.1rem;
color: #5d6d7e;
max-width: 650px;
margin: 0 auto;
line-height: 1.7;
} .section-especialidades {
padding: 80px 0;
background-color: #f8f9fa;
}
.especialidades-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.especialidad-card {
background: #ffffff;
padding: 40px 30px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
transition: all 0.3s ease;
text-align: center;
}
.especialidad-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.especialidad-icon {
width: 80px;
height: 80px;
margin: 0 auto 24px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #1a5276 0%, #154360 100%);
border-radius: 50%;
color: #ffffff;
}
.especialidad-title {
font-family: 'Montserrat', sans-serif;
font-size: 1.25rem;
font-weight: 600;
color: #2c3e50;
margin: 0 0 16px 0;
}
.especialidad-description {
font-family: 'Open Sans', sans-serif;
font-size: 0.95rem;
color: #5d6d7e;
line-height: 1.7;
margin: 0 0 24px 0;
}
.especialidad-link {
display: inline-flex;
align-items: center;
gap: 6px;
font-family: 'Open Sans', sans-serif;
font-size: 0.95rem;
font-weight: 600;
color: #1a5276;
text-decoration: none;
transition: all 0.3s ease;
}
.especialidad-link:hover {
color: #148f77;
gap: 10px;
}
@media (max-width: 900px) {
.especialidades-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.section-especialidades {
padding: 60px 0;
}
.especialidades-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.especialidad-card {
padding: 30px 24px;
}
} .section-about {
padding: 80px 0;
background-color: #ffffff;
}
.about-content {
max-width: 800px;
margin: 0 auto;
}
.about-header {
margin-bottom: 30px;
}
.about-text p {
font-family: 'Open Sans', sans-serif;
font-size: 1.05rem;
color: #2c3e50;
line-height: 1.8;
margin: 0 0 20px 0;
}
.about-highlights {
list-style: none;
padding: 0;
margin: 30px 0;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
}
.about-highlights li {
font-family: 'Open Sans', sans-serif;
font-size: 1rem;
color: #2c3e50;
padding-left: 28px;
position: relative;
}
.about-highlights li::before {
content: '';
position: absolute;
left: 0;
top: 6px;
width: 18px;
height: 18px;
background-color: #148f77;
border-radius: 50%;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: center;
background-size: 10px;
}
@media (max-width: 600px) {
.section-about {
padding: 60px 0;
}
.about-highlights {
grid-template-columns: 1fr;
}
} .section-ventajas {
padding: 80px 0;
background-color: #f8f9fa;
}
.ventajas-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
}
.ventaja-item {
padding: 30px;
background: #ffffff;
border-radius: 8px;
border-left: 4px solid #1a5276;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.ventaja-number {
font-family: 'Montserrat', sans-serif;
font-size: 2.5rem;
font-weight: 700;
color: #1a5276;
opacity: 0.2;
margin-bottom: 10px;
line-height: 1;
}
.ventaja-title {
font-family: 'Montserrat', sans-serif;
font-size: 1.15rem;
font-weight: 600;
color: #2c3e50;
margin: 0 0 12px 0;
}
.ventaja-text {
font-family: 'Open Sans', sans-serif;
font-size: 0.95rem;
color: #5d6d7e;
line-height: 1.7;
margin: 0;
}
@media (max-width: 768px) {
.section-ventajas {
padding: 60px 0;
}
.ventajas-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.ventaja-item {
padding: 24px;
}
} .section-cta {
padding: 80px 0;
background: linear-gradient(135deg, #1a5276 0%, #154360 100%);
}
.cta-content {
text-align: center;
max-width: 700px;
margin: 0 auto;
}
.cta-title {
font-family: 'Montserrat', sans-serif;
font-size: clamp(1.5rem, 3vw, 2rem);
font-weight: 700;
color: #ffffff;
margin: 0 0 16px 0;
}
.cta-text {
font-family: 'Open Sans', sans-serif;
font-size: 1.1rem;
color: rgba(255, 255, 255, 0.9);
margin: 0 0 32px 0;
line-height: 1.7;
}
.cta-buttons {
display: flex;
justify-content: center;
gap: 16px;
flex-wrap: wrap;
} .btn-primary {
display: inline-flex !important;
align-items: center !important;
justify-content: center !important;
gap: 8px !important;
padding: 16px 32px !important;
font-family: 'Open Sans', sans-serif !important;
font-size: 1rem !important;
font-weight: 600 !important;
text-decoration: none !important;
color: #154360 !important;
background-color: #ffffff !important;
border: 2px solid #ffffff !important;
border-radius: 6px !important;
transition: all 0.3s ease !important;
cursor: pointer !important;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}
.btn-primary:hover {
background-color: transparent !important;
color: #ffffff !important;
transform: translateY(-2px) !important;
} .btn-secondary {
display: inline-flex !important;
align-items: center !important;
justify-content: center !important;
gap: 8px !important;
padding: 14px 28px !important;
font-family: 'Open Sans', sans-serif !important;
font-size: 1rem !important;
font-weight: 600 !important;
text-decoration: none !important;
color: #ffffff !important;
background-color: #1a5276 !important;
border: 2px solid #1a5276 !important;
border-radius: 6px !important;
transition: all 0.3s ease !important;
}
.btn-secondary:hover {
background-color: #154360 !important;
border-color: #154360 !important;
transform: translateY(-2px) !important;
} .btn-outline {
display: inline-flex !important;
align-items: center !important;
justify-content: center !important;
gap: 8px !important;
padding: 14px 28px !important;
font-family: 'Open Sans', sans-serif !important;
font-size: 1rem !important;
font-weight: 600 !important;
text-decoration: none !important;
color: #ffffff !important;
background-color: transparent !important;
border: 2px solid #ffffff !important;
border-radius: 6px !important;
transition: all 0.3s ease !important;
}
.btn-outline:hover {
background-color: #ffffff !important;
color: #154360 !important;
}
.btn-large {
padding: 18px 36px !important;
font-size: 1.05rem !important;
}
@media (max-width: 600px) {
.section-cta {
padding: 60px 0;
}
.cta-buttons {
flex-direction: column;
align-items: stretch;
}
.cta-buttons .btn-large {
width: 100%;
}
} .section-newsletter {
padding: 80px 0;
background-color: #ffffff;
border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.newsletter-wrapper {
max-width: 700px;
margin: 0 auto;
text-align: center;
}
.newsletter-content {
margin-bottom: 36px;
}
.newsletter-icon {
width: 80px;
height: 80px;
margin: 0 auto 24px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #1a5276 0%, #154360 100%);
border-radius: 50%;
color: #ffffff;
}
.newsletter-title {
font-family: 'Montserrat', sans-serif;
font-size: clamp(1.4rem, 3vw, 1.8rem);
font-weight: 700;
color: #2c3e50;
margin: 0 0 16px 0;
line-height: 1.3;
}
.newsletter-description {
font-family: 'Open Sans', sans-serif;
font-size: 1.05rem;
color: #5d6d7e;
line-height: 1.7;
margin: 0;
} .newsletter-form {
margin-bottom: 24px;
}
.newsletter-fields {
display: grid;
grid-template-columns: 1fr 1fr auto;
gap: 16px;
margin-bottom: 20px;
}
.field-group {
text-align: left;
}
.field-label {
display: block;
font-family: 'Open Sans', sans-serif;
font-size: 0.9rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 8px;
}
.field-label .optional {
font-weight: 400;
color: #5d6d7e;
}
.field-label .required {
color: #c0392b;
}
.field-input {
width: 100%;
padding: 14px 18px;
font-family: 'Open Sans', sans-serif;
font-size: 1rem;
color: #2c3e50;
background-color: #f8f9fa;
border: 2px solid transparent;
border-radius: 6px;
transition: all 0.3s ease;
box-sizing: border-box;
}
.field-input:focus {
outline: none;
border-color: #1a5276;
background-color: #ffffff;
box-shadow: 0 0 0 4px rgba(26, 82, 118, 0.1);
}
.field-input::placeholder {
color: #95a5a6;
}
.field-submit {
display: flex;
align-items: flex-end;
} .btn-newsletter {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 14px 32px;
height: 52px;
font-family: 'Open Sans', sans-serif;
font-size: 1rem;
font-weight: 600;
color: #ffffff;
background: linear-gradient(135deg, #1a5276 0%, #154360 100%);
border: none;
border-radius: 6px;
cursor: pointer;
transition: all 0.3s ease;
white-space: nowrap;
}
.btn-newsletter:hover:not(:disabled) {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(26, 82, 118, 0.3);
}
.btn-newsletter:disabled {
opacity: 0.7;
cursor: not-allowed;
}
.btn-newsletter .btn-loading {
display: none;
}
.btn-newsletter.loading .btn-text {
display: none;
}
.btn-newsletter.loading .btn-loading {
display: block;
} .newsletter-consent {
margin-bottom: 20px;
}
.consent-label {
display: flex;
align-items: flex-start;
gap: 12px;
cursor: pointer;
text-align: left;
}
.consent-checkbox {
width: 20px;
height: 20px;
margin-top: 2px;
flex-shrink: 0;
accent-color: #1a5276;
}
.consent-text {
font-family: 'Open Sans', sans-serif;
font-size: 0.9rem;
color: #5d6d7e;
line-height: 1.5;
}
.consent-text a {
color: #1a5276;
text-decoration: underline;
}
.consent-text a:hover {
color: #154360;
} .newsletter-message {
padding: 0;
font-family: 'Open Sans', sans-serif;
font-size: 0.95rem;
border-radius: 6px;
text-align: center;
transition: all 0.3s ease;
}
.newsletter-message:empty {
display: none;
}
.newsletter-message.success {
padding: 14px 20px;
color: #155724;
background-color: #d4edda;
border: 1px solid #c3e6cb;
}
.newsletter-message.error {
padding: 14px 20px;
color: #721c24;
background-color: #f8d7da;
border: 1px solid #f5c6cb;
} .newsletter-privacy {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
font-family: 'Open Sans', sans-serif;
font-size: 0.85rem;
color: #5d6d7e;
margin: 0;
}
.newsletter-privacy svg {
flex-shrink: 0;
opacity: 0.6;
} @media (max-width: 768px) {
.section-newsletter {
padding: 60px 0;
}
.newsletter-fields {
grid-template-columns: 1fr;
}
.field-submit {
justify-content: stretch;
}
.btn-newsletter {
width: 100%;
}
}
@media (max-width: 480px) {
.newsletter-wrapper {
padding: 0 10px;
}
.newsletter-title {
font-size: 1.3rem;
}
.newsletter-description {
font-size: 0.95rem;
}
.newsletter-privacy {
flex-direction: column;
text-align: center;
}
}