/* Font Face Definitions */
@font-face {
    font-family: 'NT SEAWAVE';
    src: url('fonts/NT _SEAWAVE.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NT SEAWAVE';
    src: url('fonts/NT _SEAWAVE.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('fonts/Mulish.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('fonts/Mulish.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('fonts/Mulish.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('fonts/Mulish.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('fonts/Mulish.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Elegant';
    src: url('fonts/Elegant.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Mulish', sans-serif;
    line-height: 1.6;
    color: #536258;
    overflow-x: hidden;
    background-color: #efece7;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'NT SEAWAVE', serif;
    font-weight: 700;
    line-height: 1.2;
    color: #652f2d;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #536258;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(239, 236, 231, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid #cebdb3;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

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

.nav-link {
    text-decoration: none;
    color: #536258;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #98867b;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #98867b;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Submenu for Services */
.nav-item {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #efece7;
    box-shadow: 0 10px 30px rgba(101, 47, 45, 0.1);
    border-radius: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1rem 0;
    border: 1px solid #cebdb3;
}

.nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    list-style: none;
    margin: 0;
}

.submenu .nav-link {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #536258;
    font-size: 0.9rem;
    border-bottom: 1px solid #cebdb3;
}

.submenu .nav-link:last-child {
    border-bottom: none;
}

.submenu .nav-link:hover {
    background: #cebdb3;
    color: #652f2d;
}

.submenu .nav-link.active {
    background: #98867b;
    color: #efece7;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #98867b 0%, #bf9494 100%);
    background-image: url('assets/FOTO 1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    /* Optimizaciones de performance */
    will-change: transform;
    transform: translateZ(0);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #98867b 0%, #bf9494 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.placeholder-image i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'NT SEAWAVE', serif;
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Text Section */
.hero-text-section {
    padding: 40px 0;
    background: white;
    text-align: center;
}

.hero-text-content h1 {
    font-family: 'NT SEAWAVE', serif;
    font-size: 2.8rem;
    color: #652f2d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.3;
    white-space: nowrap;
    transition: all 0.5s ease;
}

.hero-text-content h1:hover {
    transform: scale(1.05);
    color: #98867b;
    text-shadow: 2px 2px 4px rgba(101, 47, 45, 0.2);
}

/* VPLANNER Story Section */
.vplan-story-section {
    padding: 100px 0;
    background: #f7f9f7;
    position: relative;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    position: relative;
}

.story-image {
    position: relative;
    z-index: 1;
}

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

.story-text-box {
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin-left: -80px;
    z-index: 2;
    position: relative;
    max-width: 550px;
}

.story-text-box h2 {
    color: #652f2d;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.story-text-box p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #536258;
    font-size: 1.1rem;
}

.story-text-box strong {
    color: #98867b;
}

.highlight-text {
    font-size: 1.2rem;
    color: #98867b;
    font-weight: 500;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #cebdb3;
}

/* VPLANNER Story Section Responsive */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-text-box {
        margin-left: 0;
        margin-top: -40px;
        padding: 40px 30px;
        max-width: 100%;
    }
    
    .story-image img {
        height: 400px;
    }
    
    .story-text-box h2 {
        font-size: 2rem;
    }
    
    .story-text-box p {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-single-image {
        min-height: 300px;
    }
    
    .about-single-image img {
        max-height: 400px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-image img {
        height: 200px;
    }
    
    .carousel {
        min-height: 400px;
    }
    
    .carousel-slide img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .story-text-box {
        padding: 30px 20px;
    }
    
    .story-text-box h2 {
        font-size: 1.8rem;
    }
    
    .about-single-image {
        min-height: 250px;
    }
    
    .about-single-image img {
        max-height: 300px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-image img {
        height: 180px;
    }
    
    .carousel {
        min-height: 300px;
    }
    
    .carousel-slide img {
        height: 300px;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: #efece7;
}

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

.about-text h2 {
    color: #652f2d;
    margin-bottom: 2rem;
}

.about-images {
    display: flex;
    justify-content: center;
}

.about-single-image {
    width: 100%;
    max-width: 500px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-single-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-single-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #98867b 0%, #bf9494 100%);
    color: white;
    text-align: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: #efece7;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #652f2d;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #7a8a7a;
    max-width: 600px;
    margin: 0 auto;
    white-space: nowrap;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    align-items: start;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    border-radius: 15px 15px 0 0;
}

.service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}

/* Ajuste específico para la imagen de RELAX */
.service-image img[alt*="RELAX"] {
    object-position: center 30%;
}

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

.service-content {
    padding: 2rem;
    text-align: center;
}

.service-content h3 {
    color: #652f2d;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-content h4 {
    color: #536258;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.read-more {
    display: inline-block;
    color: #98867b;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #652f2d;
}

/* Portfolio/Carousel */
.portfolio {
    padding: 100px 0;
    background: #cebdb3;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 3rem;
    min-height: 500px;
    /* Improve accessibility */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.carousel-container {
    display: flex;
    transition: transform 0.3s ease;
    will-change: transform;
}

.carousel-slide {
    min-width: 300px;
    margin: 0 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.carousel-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90%;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Featured Image Section */
.featured-image-section {
    padding: 100px 0;
    background: #efece7;
    position: relative;
}

.featured-image-content {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.featured-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(101, 47, 45, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(101, 47, 45, 0.2);
}

.featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.featured-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(101, 47, 45, 0.9) 0%, rgba(152, 134, 123, 0.8) 100%);
    color: white;
    padding: 60px 40px 40px;
    text-align: center;
}

.featured-text-overlay h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.featured-text-overlay p {
    color: #efece7;
    font-size: 1.2rem;
    margin-bottom: 0;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Featured Image */
@media (max-width: 768px) {
    .featured-image-section {
        padding: 60px 0;
    }
    
    .featured-image img {
        height: 400px;
    }
    
    .featured-text-overlay {
        padding: 40px 30px 30px;
    }
    
    .featured-text-overlay h2 {
        font-size: 2rem;
    }
    
    .featured-text-overlay p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .featured-image img {
        height: 300px;
    }
    
    .featured-text-overlay {
        padding: 30px 20px 20px;
    }
    
    .featured-text-overlay h2 {
        font-size: 1.8rem;
    }
    
    .featured-text-overlay p {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: white;
    background-image: url('assets/FOTO 7.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #8fa68e;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

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

.footer-section h3,
.footer-section h4 {
    color: #8fa68e;
    margin-bottom: 1rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.05);
}

.footer-logo-image {
    height: 40px;
    width: auto;
    display: block;
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-section p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: #6b7a6b;
}

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

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #98867b;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #652f2d;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #8fa68e;
    color: #8fa68e;
    position: relative;
    z-index: 2;
}

/* Service Pages */
.service-page {
    margin-top: 80px;
}

.service-header {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.service-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.service-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-header-content {
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.service-header-content h1 {
    font-family: 'NT SEAWAVE', serif;
    font-size: 3.5rem;
    font-weight: 1400;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-header-content h2 {
    font-size: 2rem;
    font-weight: 1400;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-content-section {
    padding: 100px 0;
    background: white;
}

.service-details {
    max-width: 800px;
    margin: 0 auto;
}

.service-details h3 {
    color: #8fa68e;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: center;
}

.service-details ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.service-details li {
    margin-bottom: 0.5rem;
}

/* SI QUIERO specific styles */
.service-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.service-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #536258;
}

.service-vision {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f7f9f7;
    border-radius: 15px;
}

.service-vision p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-vision p:first-child {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #8fa68e;
}

.service-includes {
    margin-bottom: 3rem;
}

.service-includes h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #652f2d;
}

.includes-background {
    background: #f0f4f0;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #8fa68e;
}

.includes-background ol {
    margin: 0;
    padding-left: 1.5rem;
}

.includes-background li {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #536258;
}

.includes-background strong {
    color: #652f2d;
}

.coordination-note {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #8fa68e;
    text-align: center;
    font-size: 1.1rem;
    color: #8fa68e;
}

.service-philosophy {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f7f9f7;
    border-radius: 15px;
}

.service-philosophy p {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    line-height: 1.6;
}

.service-philosophy p:first-child {
    color: #652f2d;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f7f9f7;
    border-radius: 15px;
}

.cta-button {
    display: inline-block;
    background: #98867b;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background: #652f2d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(152, 134, 123, 0.3);
}

/* Contact Page */
.contact-header {
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.contact-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.contact-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-header-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

/* Contact Intro Section */
.contact-intro {
    padding: 60px 0;
    background: white;
    text-align: center;
}

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

.intro-content h2 {
    color: #652f2d;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
}

.intro-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #536258;
    margin-bottom: 0;
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #efece7 0%, #f8f6f3 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h2 {
    color: #652f2d;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #98867b, #8fa68e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-details h4 {
    color: #536258;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 0.3rem;
    color: #536258;
}

/* Contact Info Styling */
.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-item {
    background: #f8f6f3;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    background: linear-gradient(135deg, #98867b, #8fa68e);
    margin: 0 auto 1rem auto;
}

/* Social Section */
.social-section {
    padding: 100px 0;
    background: white;
}

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

.social-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
}

.social-icon {
    width: 80px;
    height: 80px;
    background: #8fa68e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.social-card h3 {
    color: #4a5d4a;
    margin-bottom: 0.5rem;
}

.social-card p {
    color: #7a8a7a;
    margin-bottom: 1rem;
}

.social-link-btn {
    display: inline-block;
    background: #8fa68e;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link-btn:hover {
    background: #6b7a6b;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f7f9f7;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #8fa68e;
    margin-bottom: 1rem;
}

/* Downloads Page */
.downloads-header {
    background: linear-gradient(135deg, #8fa68e 0%, #a8c5a7 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 80px;
}

.downloads-header-content h1 {
    margin-bottom: 1rem;
}

.downloads-section {
    padding: 100px 0;
    background: #f7f9f7;
}

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

.download-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.download-card:hover {
    transform: translateY(-10px);
}

.download-icon {
    width: 80px;
    height: 80px;
    background: #8fa68e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.download-content h3 {
    color: #4a5d4a;
    margin-bottom: 1rem;
}

.download-features {
    list-style: none;
    margin: 1.5rem 0;
}

.download-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #7a8a7a;
}

.download-features i {
    color: #8fa68e;
    margin-right: 0.5rem;
}

.download-btn {
    display: inline-block;
    background: #8fa68e;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.download-btn:hover {
    background: #6b7a6b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(143, 166, 142, 0.3);
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #8fa68e 0%, #a8c5a7 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-btn {
    background: #4a5d4a;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #6b7a6b;
    transform: translateY(-2px);
}

.newsletter-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Tips Section */
.tips-section {
    padding: 100px 0;
    background: white;
}

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

.tip-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-10px);
}

.tip-icon {
    width: 80px;
    height: 80px;
    background: #8fa68e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.tip-card h3 {
    color: #4a5d4a;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-header {
        height: 300px;
    }
    
    .service-header-content h1 {
        font-size: 2.5rem;
    }
    
    .service-header-content h2 {
        font-size: 1.5rem;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-family: 'NT SEAWAVE', serif;
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-content h2 {
        font-size: 2.2rem;
    }

    .intro-content p {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
    }

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

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }
    
    .carousel-slide {
        min-width: 250px;
        margin: 0 0.5rem;
    }
    
    .carousel-slide img {
        height: 250px;
    }
    
    .carousel-indicators {
        bottom: 15px;
        gap: 6px;
        max-width: 95%;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .carousel-btn:hover {
        transform: translateY(-50%) scale(1.02);
    }
}

@media (max-width: 480px) {
    .service-header {
        height: 250px;
    }
    
    .service-header-content h1 {
        font-size: 2rem;
    }
    
    .service-header-content h2 {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .footer-logo-image {
        height: 35px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-family: 'NT SEAWAVE', serif;
        font-size: 2rem;
    }

    .service-header-content h1 {
        font-family: 'NT SEAWAVE', serif;
        font-size: 2.5rem;
    }

    .download-card,
    .tip-card,
    .social-card {
        padding: 1.5rem;
    }
    
    .carousel-slide {
        min-width: 200px;
        margin: 0 0.3rem;
    }
    
    .carousel-slide img {
        height: 200px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-slide {
        min-width: 200px;
        margin: 0 0.3rem;
    }
    
    .carousel-slide img {
        height: 200px;
    }
    
    .carousel-indicators {
        bottom: 10px;
        gap: 5px;
        max-width: 98%;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .carousel-btn:hover {
        transform: translateY(-50%) scale(1.01);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Loading animation for images */
.image-placeholder {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #efece7;
}

::-webkit-scrollbar-thumb {
    background: #98867b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #652f2d;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 20px;
    margin-top: 3rem;
}

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

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

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* Portfolio Item Sizes */
.portfolio-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-item.medium {
    grid-column: span 2;
    grid-row: span 1;
}

.portfolio-item.small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Responsive Portfolio */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 200px);
        gap: 15px;
    }
    
    .portfolio-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .portfolio-item.medium {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .portfolio-item.small {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 250px);
        gap: 15px;
    }
    
    .portfolio-item.large,
    .portfolio-item.medium,
    .portfolio-item.small {
        grid-column: span 1;
        grid-row: span 1;
    }
} 

/* Downloads Main Section */
.downloads-main-section {
    padding: 120px 0;
    background: #efece7;
    margin-top: 80px;
}

.downloads-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.downloads-text-column {
    padding-right: 2rem;
}

.downloads-content h1 {
    font-family: 'NT SEAWAVE', serif;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #652f2d;
    line-height: 1.1;
}

.downloads-content p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #536258;
    line-height: 1.6;
}

.download-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #98867b 0%, #bf9494 100%);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(101, 47, 45, 0.2);
    margin-top: 2rem;
}

.download-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(101, 47, 45, 0.3);
    background: linear-gradient(135deg, #652f2d 0%, #98867b 100%);
}

.btn-text {
    font-family: 'NT SEAWAVE', serif;
}

.btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.download-link-btn:hover .btn-arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.downloads-image-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.downloads-image {
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(101, 47, 45, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.downloads-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(101, 47, 45, 0.2);
}

.downloads-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Responsive Downloads */
@media (max-width: 968px) {
    .downloads-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .downloads-text-column {
        padding-right: 0;
        order: 2;
    }
    
    .downloads-image-column {
        order: 1;
    }
    
    .downloads-content h1 {
        font-family: 'NT SEAWAVE', serif;
        font-size: 3rem;
    }
    
    .downloads-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .downloads-main-section {
        padding: 80px 0;
    }
    
    .downloads-content h1 {
        font-family: 'NT SEAWAVE', serif;
        font-size: 2.5rem;
    }
    
    .downloads-content p {
        font-size: 1.1rem;
    }
    
    .download-link-btn {
        padding: 1rem 1.8rem;
        font-size: 1.1rem;
    }
    
    /* SI QUIERO responsive */
    .service-content-section {
        padding: 60px 0;
    }
    
    .service-details h3 {
        font-size: 1.5rem;
    }
    
    .includes-background {
        padding: 1.5rem;
    }
    
    .includes-background li {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .service-vision,
    .service-philosophy {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .downloads-main-section {
        padding: 60px 0;
    }
    
    .downloads-content h1 {
        font-family: 'NT SEAWAVE', serif;
        font-size: 2.2rem;
    }
    
    .download-link-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .intro-content h2 {
        font-size: 1.8rem;
    }

    .intro-content p {
        font-size: 1rem;
    }
    
    /* SI QUIERO responsive mobile */
    .service-content-section {
        padding: 40px 0;
    }
    
    .service-details h3 {
        font-size: 1.3rem;
    }
    
    .includes-background {
        padding: 1rem;
        margin: 0 10px;
    }
    
    .includes-background li {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .service-vision,
    .service-philosophy {
        padding: 1rem;
        margin: 0 10px;
    }
    
    .service-intro p,
    .service-vision p,
    .service-philosophy p {
        font-size: 1rem;
    }
} 

/* Animaciones personalizadas */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}