
/*============================================================================================*/
/* Cristina del Mar - Custom Styles */
/*============================================================================================*/

/* Hero CTA Button */
body {
    font-size: 18px;
}

.hero-cta {
    background-color: #024F5F;
    color: #1e3a5f;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: #1e3a5f;
    color: #024F5F;
}

.hero .wrapper h1,
.hero .wrapper h3 {
    font-size: 2.5rem;
}

.lead_2 {
    font-size: 1.1rem;
    line-height: 1.6rem;
}

/* Bloque de Confianza Rápida */
.bg_light_features {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.box_features {
    padding: 30px 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    /*height: 100%;*/
}

.box_features:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.box_features i {
    font-size: 2.5rem;
    color: #e8b86d;
    margin-bottom: 20px;
    display: block;
}

.box_features h3 {
    color: #1e3a5f;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.box_features p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Feature Icons */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    text-align: center;
    padding: 25px 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.feature-item i {
    font-size: 2.5rem;
    color: #e8b86d;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.15);
}

.feature-item h4 {
    color: #1e3a5f;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: #1e3a5f;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-title .subtitle {
    color: #e8b86d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

/* Story/Experience Section */
.story-section {
    background: #fff;
    padding: 80px 0;
}

.story-content {
    padding: 40px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%);
    border-radius: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.story-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 150px;
    color: rgba(255,255,255,0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

.story-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #e8b86d;
    position: relative;
    z-index: 1;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: #e8b86d;
    font-weight: 600;
}

/* Apartment Section */
.apartment-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.apartment-image img {
    transition: transform 0.5s ease;
}

.apartment-image:hover img {
    transform: scale(1.05);
}

.apartment-details {
    padding: 30px;
}

.apartment-details h3 {
    color: #1e3a5f;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.apartment-details p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Kitchen Section */
.kitchen-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.kitchen-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.kitchen-content h3 {
    color: #1e3a5f;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.kitchen-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.kitchen-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.kitchen-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.kitchen-features li:last-child {
    border-bottom: none;
}

.kitchen-features i {
    color: #e8b86d;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Location Section */
.location-section {
    background: #fff;
    padding: 80px 0;
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.location-info h3 {
    color: #1e3a5f;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.location-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.location-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.amenity-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background: #1e3a5f;
    transform: translateX(10px);
}

.amenity-item:hover i,
.amenity-item:hover span {
    color: #fff;
}

.amenity-item i {
    font-size: 1.5rem;
    color: #e8b86d;
    margin-right: 15px;
    margin-top: 3px;
    transition: color 0.3s ease;
}

.amenity-item span {
    color: #1e3a5f;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Capacity Section */
.capacity-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%);
    padding: 80px 0;
    color: #fff;
}

.capacity-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    height: 100%;
}

.capacity-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-10px);
}

.capacity-card i {
    font-size: 3rem;
    color: #e8b86d;
    margin-bottom: 20px;
}

.capacity-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.capacity-card p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Services Section */
.services-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: #e8b86d;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

.service-card h4 {
    color: #1e3a5f;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Cancellation Section */
.cancellation-section {
    background: #fff;
    padding: 60px 0;
}

.cancellation-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid #e8b86d;
}

.cancellation-card h4 {
    color: #1e3a5f;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cancellation-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Check Section */
.check-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%);
    padding: 80px 0;
    color: #fff;
}

.check-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    height: 100%;
    transition: all 0.3s ease;
}

.check-card:hover {
    background: rgba(255,255,255,0.15);
}

.check-card i {
    font-size: 3rem;
    color: #e8b86d;
    margin-bottom: 20px;
}

.check-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.check-card p {
    opacity: 0.9;
    margin: 0;
}

/* Pulse animation for CTA */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Gallery Section */
.gallery-section {
    background: #fff;
    padding: 80px 0;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-info-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-info-card i {
    font-size: 2rem;
    color: #e8b86d;
    margin-bottom: 15px;
}

.contact-info-card h4 {
    color: #1e3a5f;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.contact-info-card a {
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #e8b86d;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1e3a5f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e8b86d;
    color: #1e3a5f;
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form-wrapper .form-header h3 {
    color: #1e3a5f;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-form-wrapper .form-header p {
    color: #666;
}

.form-floating label {
    color: #666;
}

.form-control:focus,
.form-select:focus {
    border-color: #e8b86d;
    box-shadow: 0 0 0 0.25rem rgba(232, 184, 109, 0.25);
}

/* Footer */
.footer-section {
    background: #1e3a5f;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
}

.footer-about p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-title {
    color: #e8b86d;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #e8b86d;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #20b857;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .story-content {
        padding: 30px;
    }
    
    .story-content h3 {
        font-size: 1.5rem;
    }
    
    .location-amenities {
        grid-template-columns: 1fr;
    }
    
    .amenity-item:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .story-content {
        margin-bottom: 30px;
    }
    
    .kitchen-content {
        margin-top: 30px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
        line-height: 50px;
    }
}

/* Animations */
[data-cue] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

[data-cue].visible {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 30px 30px;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Cards Professional Styles */
.pricing-card-wrapper {
    position: relative;
    height: 100%;
}

.pricing-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.premium {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 50%, #3a6fa0 100%);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.3);
}

.pricing-card.premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 58, 95, 0.4);
}

.pricing-card:not(.premium):hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(232, 184, 109, 0.25);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e8b86d;
    color: #1e3a5f;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-card.premium .pricing-features li:last-child {
    border-bottom: none;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.info-box {
    transition: all 0.3s ease;
}

.info-box:hover {
    background: rgba(232, 184, 109, 0.2) !important;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-card.premium,
    .pricing-card:not(.premium) {
        padding: 30px 20px !important;
    }
    
    .price-display .amount {
        font-size: 3rem !important;
    }
    
    .pricing-icon {
        height: 60px;
    }
    
    .pricing-icon i {
        font-size: 2rem !important;
    }
}

/* Pulse Button Animation */
.pulse-button {
    animation: pulse-cta 2s infinite;
    box-shadow: 0 4px 15px rgba(232, 184, 109, 0.5);
}

.pulse-button:hover {
    animation: none;
    background-color: #1e3a5f !important;
    color: #fff !important;
    transform: scale(1.05);
}

@keyframes pulse-cta {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 184, 109, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(232, 184, 109, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(232, 184, 109, 0);
    }
}
