@charset "utf-8";
/* CSS Document - Demo Version */

/*--------------------------------------------------------------
# Variables de colores del sitio principal
--------------------------------------------------------------*/
:root {
    --heading-color: #556430;
    --accent-color: #e9511d;
    --contrast-color: #ffffff;
    --advertising-color: #fbba00;
}

/*--------------------------------------------------------------
# Estilos para Banners Publicitarios - DEMO
--------------------------------------------------------------*/

/* Etiqueta de anuncio */
.ad-label {
    display: inline-block;
    background-color: var(--advertising-color);
    color: var(--heading-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tarjeta de anuncio */
.ad-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.ad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.ad-card .card-image-wrapper {
    overflow: hidden;
    width: 100%;
    border-radius: 16px 16px 0 0;
}

.ad-card .card-image-wrapper img,
.ad-card .card-img-top {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

/* Estilos generales para todas las tarjetas con card-img-top en demo */
.card .card-img-top {
    width: 100% !important;
    height: auto;
    min-height: 180px;
    object-fit: cover !important;
    object-position: center;
    display: block;
}

/* Tarjetas de secciones (Living in Costa Rica) */
.card.h-100.shadow.rounded-4 .card-img-top {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    object-position: center;
    display: block;
}

.ad-card:hover .card-img-top {
    transform: scale(1.05);
}

/* Overlay en la imagen */
.ad-card .card-img-overlay {
    background: linear-gradient(transparent, rgba(112, 131, 62, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ad-card:hover .card-img-overlay {
    opacity: 1;
}

.ad-overlay-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    background-color: var(--accent-color);
    border-radius: 20px;
}

/* Título de la tarjeta */
.ad-card-title {
    color: var(--heading-color);
    font-size: 1.1rem;
}

/* Placeholder para anuncios vacíos */
.ad-placeholder .placeholder-image {
    transition: transform 0.5s ease;
}

.ad-placeholder:hover .placeholder-image {
    transform: scale(1.02);
}

/* Responsive para anuncios */
@media (max-width: 768px) {
    .ad-card .card-img-top {
        height: 180px !important;
    }
    
    .ad-card-title {
        font-size: 1rem;
    }
}

/*--------------------------------------------------------------
# Estilos para Landing Pages - DEMO
--------------------------------------------------------------*/

/* Landing Page Custom Styles */
.landing-hero {
    background-color: var(--heading-color);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.landing-hero-content {
    position: relative;
    z-index: 1;
}

.client-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--contrast-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

/* CTA Button - Hero Section */
.hero .cta-button {
    margin-bottom: 0;
}

.hero .cta-button .btn {
    background-color: #d33b1f; /* Color rojo inicial */
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.hero .cta-button .btn:hover {
    background-color: var(--accent-color); /* El verde que cambia al accionar */
}

/* CTA Button - Header Section */
.cta-button {
    display: inline-block;
    padding: 12px 28px !important;
    background-color: #e9511d !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
}

.cta-button:hover {
    background-color: #556430 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button i {
    margin-right: 8px;
}

/* Language Switcher */
.lang-switcher {
    display: inline-flex !important;
    align-items: center !important;
    margin-bottom: 10px !important;
}

.lang-btn {
    display: inline-block !important;
    padding: 6px 14px !important;
    background-color: transparent !important;
    color: #556430 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
    border: 2px solid #556430 !important;
}

.lang-btn:hover {
    background-color: #556430 !important;
    color: white !important;
}

.lang-btn.lang-active {
    background-color: #556430 !important;
    color: white !important;
}

.lang-divider {
    color: #556430 !important;
    margin: 0 8px !important;
    font-weight: 600 !important;
}

.section-title-landing {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 3rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: block;
    text-decoration: none;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

/* Video Section */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--heading-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.video-placeholder i {
    font-size: 5rem;
    opacity: 0.8;
}

/* Features */
.feature-card {
    background: var(--contrast-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--heading-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--contrast-color);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}

/* Contact Buttons */
.contact-section {
    background-color: var(--heading-color);
    padding: 80px 0;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 5px;
}

.btn-website {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.btn-website:hover {
    background-color: #d14520;
    color: var(--contrast-color);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--contrast-color);
}

.btn-whatsapp:hover {
    background-color: #1da851;
    color: var(--contrast-color);
    transform: translateY(-3px);
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--contrast-color);
    color: var(--heading-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-5px);
}

/* Back to main site */
.back-link-wrapper {
    background-color: #f9f7ec;
    padding: 25px 20px;
    text-align: center;
}

.back-link {
    display: inline-block;
    width: fit-content;
    background-color: var(--contrast-color);
    color: var(--heading-color);
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: var(--heading-color);
    color: var(--contrast-color);
}

/* Ad label */
.ad-label-landing {
    display: inline-block;
    background-color: var(--advertising-color);
    color: var(--heading-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Sponsored Label Container - fuera del hero */
.sponsored-label-container {
    padding: 20px 0 10px;
    background-color: transparent;
}

/* Hero Text Section - arriba de la foto */
.hero-text-section {
    padding: 20px;
    background-color: #fff;
}

.hero-title-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.hero-subtitle-main {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
}

/* Hero Bottom Section - debajo de la foto */
.hero-bottom-section {
    padding: 20px;
    background-color: #fff;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.back-link-inline {
    display: inline-flex;
    align-items: center;
    background-color: var(--contrast-color);
    color: var(--heading-color);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--heading-color);
}

.back-link-inline:hover {
    background-color: var(--heading-color);
    color: var(--contrast-color);
}

/* Footer landing */
.footer-landing {
    background-color: var(--heading-color);
}

/* Property Status Badge (Sale/Rent) */
.property-status-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.property-status-badge.for-sale {
    background-color: var(--accent-color);
    color: white;
}

.property-status-badge.for-rent {
    background-color: #0d6efd;
    color: white;
}

/* Property Main Title */
.property-main-title {
    font-size: 2rem;
    color: var(--heading-color);
    font-weight: 700;
}

/* Property Main Image */
.property-main-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* About Image */
.about-image {
    aspect-ratio: 1/1;
    object-fit: cover;
    max-width: 400px;
}

/* Check List */
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.check-list li i {
    flex-shrink: 0;
    margin-top: 4px;
}

.check-list li span {
    flex: 1;
}

/* Property Title Wrapper */
.property-title-wrapper {
    flex: 1;
    min-width: 250px;
}

/* Responsive */
@media (min-width: 992px) {
    /* Larger title on laptops and desktops */
    .property-main-title {
        font-size: 2.75rem;
    }
}

@media (min-width: 1200px) {
    /* Even larger on big desktops */
    .property-main-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        margin-top: 10px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title-landing {
        font-size: 2rem;
    }
    
    /* Mobile adjustments for property header */
    .property-header-section .ad-label-landing {
        display: inline-block;
        margin-bottom: 15px;
        padding: 5px 12px;
    }
    
    .property-title-wrapper {
        width: 100%;
    }
    
    .property-main-title {
        font-size: 2.5rem;
        margin-top: 50px;
    }
    
    .property-status-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
    
    /* Ajustes para hero en tablets */
    .landing-hero-content {
        display: none;
    }
    
    .hero-title-main {
        font-size: 2rem;
    }
    
    .hero-subtitle-main {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 20px;
    }
    
    /* Botón CTA en header tablet */
    .property-header-section .text-end {
        width: 100%;
        text-align: center !important;
        margin-top: 15px;
    }
    
    /* Badge FOR SALE debajo del título */
    .property-title-wrapper .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px !important;
    }
}

/* Móviles pequeños */
@media (max-width: 456px) {
    .property-main-title {
        margin-top: 10px !important;
        font-size: 2rem;
    }
    
    .property-header-section .ad-label-landing {
        margin-bottom: 20px;
    }
    
    .property-title-wrapper .d-flex {
        margin-top: 10px !important;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px !important;
    }
    
    .property-status-badge {
        align-self: flex-start;
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    /* Ajustes para hero en móviles pequeños */
    .landing-hero-content {
        display: none;
    }
    
    .hero-title-main {
        font-size: 1.8rem;
    }
    
    .hero-subtitle-main {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-text-section {
        padding: 30px 15px 15px;
    }
    
    .hero-bottom-section {
        padding: 15px;
    }
    
    /* Ajustes para lista de características */
    .section-title-landing {
        font-size: 1.5rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    /* Imagen about en móviles */
    .about-image {
        max-width: 100%;
        width: 100%;
    }
    
    /* Botón CTA en header móvil */
    .property-header-section .text-end {
        width: 100%;
        text-align: center !important;
        margin-top: 15px;
    }
    
    .cta-button {
        display: inline-block;
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/*--------------------------------------------------------------
# Estilos para Landing Page Profesional V2
--------------------------------------------------------------*/

/* Professional Header */
.professional-header {
    background: linear-gradient(135deg, var(--heading-color) 0%, #1B4D66 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.professional-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.professional-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--contrast-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
    font-family: 'Raleway', sans-serif;
}

.professional-specialty {
    font-size: 1.5rem;
    color: var(--advertising-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.professional-tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.header-cta {
    position: relative;
    z-index: 1;
}

/* Profile Section */
.profile-section {
    background-color: #fff;
}

.professional-photo-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 320px;
}

.professional-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.photo-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--heading-color) 0%, #1B4D66 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(27, 77, 102, 0.3);
}

.photo-badge i {
    color: var(--advertising-color);
    margin-right: 5px;
}

/* CV Container */
.cv-container {
    padding-left: 30px;
}

.cv-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-family: 'Raleway', sans-serif;
}

.cv-intro {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cv-section {
    margin-bottom: 1.5rem;
    padding: 20px;
    background: #f9f7ec;
    border-radius: 15px;
    border-left: 4px solid var(--heading-color);
}

.cv-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.cv-section-title i {
    color: var(--accent-color);
}

.cv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cv-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(112, 131, 62, 0.15);
    display: flex;
    flex-direction: column;
}

.cv-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cv-item-title {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.cv-item-detail {
    font-size: 0.9rem;
    color: #666;
    margin-top: 3px;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: white;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #333;
}

.contact-info-item i {
    color: var(--heading-color);
    font-size: 1.1rem;
}

/* Office Gallery Section */
.office-gallery-section {
    background-color: #f9f7ec;
}

.office-photo-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
}

.office-photo {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.office-photo-card:hover .office-photo {
    transform: scale(1.1);
}

.office-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 40%, rgba(27, 77, 102, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.office-photo-card:hover .office-photo-overlay {
    opacity: 1;
}

.office-photo-overlay span {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}

.office-photo-overlay h5 {
    color: white;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

/* Specialties Section */
.specialties-section {
    background-color: #fff;
}

.specialty-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    border: 1px solid rgba(112, 131, 62, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--heading-color);
}

.specialty-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--heading-color) 0%, #1B4D66 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.specialty-icon i {
    font-size: 1.8rem;
    color: white;
}

.specialty-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.specialty-desc {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f9f7ec;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: var(--advertising-color);
    font-size: 1rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(112, 131, 62, 0.15);
}

.author-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--heading-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.5rem;
    color: white;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--heading-color);
    font-size: 1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: #888;
}

/* Contact Section Enhancements */
.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
}

.contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.social-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Styles for Professional V2 */
@media (max-width: 992px) {
    .professional-name {
        font-size: 2.8rem;
    }
    
    .professional-specialty {
        font-size: 1.3rem;
    }
    
    .cv-container {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .professional-photo-wrapper {
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .professional-header {
        padding: 50px 0 40px;
    }
    
    .professional-name {
        font-size: 2.2rem;
    }
    
    .professional-specialty {
        font-size: 1.1rem;
    }
    
    .professional-tagline {
        font-size: 1rem;
    }
    
    .cv-title {
        font-size: 1.7rem;
    }
    
    .cv-section {
        padding: 15px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .specialty-card {
        padding: 25px 20px;
    }
}

@media (max-width: 456px) {
    .professional-header {
        padding: 40px 0 30px;
    }
    
    .professional-name {
        font-size: 1.8rem;
    }
    
    .professional-specialty {
        font-size: 1rem;
    }
    
    .professional-tagline {
        font-size: 0.9rem;
    }
    
    .professional-photo {
        max-width: 250px;
        margin: 0 auto;
        display: block;
    }
    
    .photo-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .cv-title {
        font-size: 1.5rem;
    }
    
    .cv-intro {
        font-size: 0.95rem;
    }
}

/*--------------------------------------------------------------
# Estilos para Landing Page Profesional V2 - Nueva Estructura
--------------------------------------------------------------*/

/* Sponsored wrapper - above header */
.sponsored-top-wrapper {
    background-color: #f9f7ec;
    padding: 15px 20px;
    text-align: center;
}

/* Professional Header V2 - Con imagen de fondo y velo negro 70% */
.professional-header-v2 {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* 70% velo negro - más oscuro para que el texto se vea bien */
}

/* Sponsored label */
.ad-label-v2 {
    display: inline-block;
    background-color: var(--heading-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Professional Photo in Header */
.header-photo-wrapper {
    margin-bottom: 20px;
}

.header-professional-photo {
    width: 180px;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    border: 4px solid rgba(255,255,255,0.2);
}

.professional-name-v2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    font-family: 'Raleway', sans-serif;
}

.professional-specialty-v2 {
    font-size: 1.6rem;
    color: var(--advertising-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.professional-tagline-v2 {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.header-cta-v2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-white-v2 {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: white;
    color: var(--heading-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-white-v2:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    color: var(--heading-color);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Profile Section V2 */
.profile-section-v2 {
    background-color: #fff;
}

/* Profile title wrapper - above photo on left */
.profile-title-wrapper {
    margin-bottom: 25px;
}

.profile-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-family: 'Raleway', sans-serif;
    text-align: center;
}

.profile-intro-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

/* Large Professional Photo - same width as gallery photos below, covers height of 3 blocks */
.professional-photo-large-wrapper {
    position: relative;
    width: 100%;
}

.professional-photo-large {
    width: 100%;
    height: 100%;
    min-height: 580px;
    object-fit: cover;
    object-position: center top;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.photo-badge-v2 {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--heading-color) 0%, #1B4D66 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(27, 77, 102, 0.3);
}

.photo-badge-v2 i {
    color: var(--advertising-color);
    margin-right: 6px;
}

/* CV Blocks Container */
.cv-blocks-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cv-block {
    background: #f9f7ec;
    border-radius: 15px;
    padding: 25px;
    border-left: none;
}

.cv-block-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.cv-block-title i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.cv-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cv-list-v2 li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(112, 131, 62, 0.15);
    display: flex;
    flex-direction: column;
}

.cv-list-v2 li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cv-item-title {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.cv-item-detail {
    font-size: 0.9rem;
    color: #666;
    margin-top: 3px;
}

/* Contact Info Grid V2 */
.contact-info-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.contact-info-item-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: white;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #333;
}

.contact-info-item-v2 i {
    color: var(--heading-color);
    font-size: 1.1rem;
}

/* Office Gallery V2 */
.office-gallery-v2 {
    background-color: #f9f7ec;
}

.office-photo-card-v2 {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
}

.office-photo-v2 {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.office-photo-card-v2:hover .office-photo-v2 {
    transform: scale(1.05);
}

.office-photo-overlay-v2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 50%, rgba(27, 77, 102, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.office-photo-card-v2:hover .office-photo-overlay-v2 {
    opacity: 1;
}

.office-photo-overlay-v2 h5 {
    color: white;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

/* Office Info Wrapper */
.office-info-wrapper {
    padding: 20px 0 20px 40px;
}

.office-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.office-description-center {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.office-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(112, 131, 62, 0.15);
    font-size: 1rem;
    color: #333;
}

.office-features-list li:last-child {
    border-bottom: none;
}

.office-features-list li i {
    color: var(--heading-color);
    font-size: 1.1rem;
}

/* Specialties Section V2 - Icons centered and same size */
.specialties-section-v2 {
    background-color: #f9f7ec;
}

.specialty-card-v2 {
    background: white;
    border-radius: 15px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    border: 1px solid rgba(112, 131, 62, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.specialty-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--heading-color);
}

.specialty-icon-v2 {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    background-color: var(--heading-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.specialty-icon-v2 i {
    font-size: 2rem;
    color: white;
}

.specialty-title-v2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 12px;
    text-align: center;
}

.specialty-desc-v2 {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

/* Responsive Styles for Professional V2 */
@media (max-width: 992px) {
    .professional-header-v2 {
        min-height: 450px;
        padding: 50px 0;
    }
    
    .professional-name-v2 {
        font-size: 2.8rem;
    }
    
    .professional-specialty-v2 {
        font-size: 1.4rem;
    }
    
    .profile-main-title {
        font-size: 2rem;
    }
    
    .professional-photo-large-wrapper {
        max-width: 100%;
        margin: 0 auto 30px;
    }
    
    .professional-photo-large {
        min-height: 450px;
    }
    
    .office-info-wrapper {
        padding-left: 0;
        padding-top: 30px;
    }
}

@media (max-width: 768px) {
    .professional-header-v2 {
        min-height: 400px;
        padding: 40px 0;
    }
    
    .header-professional-photo {
        width: 150px;
        height: 180px;
    }
    
    .professional-name-v2 {
        font-size: 2.2rem;
    }
    
    .professional-specialty-v2 {
        font-size: 1.2rem;
    }
    
    .professional-tagline-v2 {
        font-size: 1rem;
    }
    
    .header-cta-v2 {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-white-v2,
    .header-cta-v2 .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .profile-main-title {
        font-size: 1.8rem;
    }
    
    .profile-intro-text {
        font-size: 0.95rem;
    }
    
    .professional-photo-large {
        min-height: 350px;
    }
    
    .cv-block {
        padding: 20px;
    }
    
    .contact-info-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .office-photo-v2 {
        aspect-ratio: 4/3;
    }
    
    .specialty-icon-v2 {
        width: 70px;
        height: 70px;
        min-width: 70px;
        min-height: 70px;
    }
    
    .specialty-icon-v2 i {
        font-size: 1.7rem;
    }
}

@media (max-width: 456px) {
    .professional-header-v2 {
        min-height: 350px;
        padding: 35px 0;
    }
    
    .header-professional-photo {
        width: 130px;
        height: 160px;
    }
    
    .professional-name-v2 {
        font-size: 1.8rem;
    }
    
    .professional-specialty-v2 {
        font-size: 1rem;
    }
    
    .professional-tagline-v2 {
        font-size: 0.9rem;
    }
    
    .ad-label-landing {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    .btn-white-v2,
    .header-cta-v2 .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .profile-main-title {
        font-size: 1.6rem;
    }
    
    .profile-intro-text {
        font-size: 0.95rem;
    }
    
    .professional-photo-large {
        min-height: 300px;
    }
    
    .photo-badge-v2 {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
    
    .cv-block-title {
        font-size: 1rem;
    }
    
    .cv-item-title {
        font-size: 0.95rem;
    }
    
    .cv-item-detail {
        font-size: 0.85rem;
    }
    
    .contact-info-item-v2 {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .office-info-wrapper {
        padding-top: 20px;
    }
    
    .office-description {
        font-size: 0.95rem;
    }
    
    .office-features-list li {
        font-size: 0.95rem;
    }
    
    .cv-section-title {
        font-size: 1rem;
    }
    
    .cv-item-title {
        font-size: 0.95rem;
    }
    
    .cv-item-detail {
        font-size: 0.85rem;
    }
    
    .contact-info-item {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .section-title-landing {
        font-size: 1.5rem;
    }
    
    .contact-title {
        font-size: 1.6rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}

/*--------------------------------------------------------------
# Estilos para Landing Page Fitness - Schedule & Pricing
--------------------------------------------------------------*/

/* Schedule Table */
.schedule-table {
    width: 100%;
    margin-bottom: 0;
}

.schedule-table thead th {
    background-color: var(--heading-color);
    color: white;
    padding: 15px 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    border: none;
}

.schedule-table thead th:first-child {
    border-radius: 10px 0 0 0;
}

.schedule-table thead th:last-child {
    border-radius: 0 10px 0 0;
}

.schedule-table tbody td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid rgba(112, 131, 62, 0.1);
    font-size: 0.9rem;
    color: #555;
    background-color: #fff;
}

.schedule-table tbody tr:hover td {
    background-color: #f9f7ec;
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

/* Pricing Cards */
.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-card {
    background: #f9f7ec;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--heading-color);
    transform: translateX(5px);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(112, 131, 62, 0.1) 0%, rgba(27, 77, 102, 0.05) 100%);
    border: 2px solid var(--accent-color);
    position: relative;
}

.pricing-card.featured:hover {
    border-color: var(--accent-color);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
}

.price-period {
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
}

/* Responsive for Schedule & Pricing */
@media (max-width: 768px) {
    .schedule-table thead th {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    .schedule-table tbody td {
        padding: 10px 8px;
        font-size: 0.85rem;
    }
    
    .price {
        font-size: 1.6rem;
    }
    
    .pricing-card {
        padding: 15px;
    }
}

@media (max-width: 456px) {
    .schedule-table thead th {
        padding: 10px 6px;
        font-size: 0.75rem;
    }
    
    .schedule-table tbody td {
        padding: 8px 6px;
        font-size: 0.75rem;
    }
    
    .price {
        font-size: 1.4rem;
    }
    
    .price-period {
        font-size: 0.8rem;
    }
}
