/* Reset y Configuración Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de colores basada en la imagen de GOMOY MARKETING */
    --primary-purple: #5E35B1;
    --secondary-teal: #26A69A;
    --accent-yellow: #FFC107;
    --accent-blue: #2196F3;
    --accent-pink: #E91E63;
    --accent-orange: #FF9800;
    
    /* Colores neutros */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --black: #212529;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-teal) 100%);
    --gradient-logo: linear-gradient(135deg, #FFC107 0%, #2196F3 25%, #26A69A 50%, #5E35B1 75%, #E91E63 100%);
    --gradient-bg: linear-gradient(135deg, #FFF9C4 0%, #E1F5FE 100%);
    
    /* Tipografía */
    --font-primary: 'Montserrat', sans-serif;
    
    /* Espaciado */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transiciones */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 15px 0;
}

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

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-go {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-g, .logo-o {
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-yellow);
    border-radius: 50%;
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-purple);
    margin: 0;
}

.logo-text span {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-purple);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.hero::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(94, 53, 177, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 53, 177, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.hero-graphic {
    position: relative;
    width: 400px;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.element-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-blue));
    bottom: 30%;
    left: 10%;
    animation-delay: 4s;
}

/* Quick Access Section */
.quick-access {
    padding: 80px 0;
    background: var(--white);
}

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

.access-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(94, 53, 177, 0.1);
}

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

.access-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.access-card h3 {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-weight: 600;
}

.access-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.access-link {
    color: var(--secondary-teal);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.access-link:hover {
    color: var(--primary-purple);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--medium-gray);
    font-weight: 500;
}

.mission-vision-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.mvv-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-5px);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.mvv-card h3 {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-weight: 600;
}

.mvv-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.mvv-card ul {
    list-style: none;
    text-align: left;
}

.mvv-card li {
    color: var(--medium-gray);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.mvv-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-teal);
    font-weight: bold;
}

/* Company CV Section */
.company-cv {
    margin-top: 80px;
    padding: 60px 0;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cv-header {
    text-align: center;
    margin-bottom: 50px;
}

.cv-header h3 {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-weight: 600;
}

.cv-header p {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.cv-content {
    max-width: 900px;
    margin: 0 auto;
}

.cv-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.cv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(94, 53, 177, 0.15);
}

.cv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
}

.cv-info h4 {
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.4rem;
}

.cv-info p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cv-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.cv-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-teal);
    font-weight: 500;
    font-size: 0.9rem;
}

.cv-stat i {
    font-size: 1rem;
}

.cv-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
}

.cv-download,
.cv-preview {
    min-width: 150px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* CV Preview Modal */
.cv-preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cv-preview-modal.active {
    opacity: 1;
    visibility: visible;
}

.cv-modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.8);
    transition: var(--transition);
}

.cv-preview-modal.active .cv-modal-content {
    transform: scale(1);
}

.cv-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: var(--gradient-primary);
    color: var(--white);
}

.cv-modal-header h4 {
    margin: 0;
    font-weight: 600;
    font-size: 1.3rem;
}

.cv-modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: var(--transition);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cv-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cv-modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.cv-preview-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cv-section h5 {
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--secondary-teal);
    padding-bottom: 8px;
}

.cv-section p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.cv-section ul {
    list-style: none;
    padding: 0;
}

.cv-section li {
    color: var(--medium-gray);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.cv-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-teal);
    font-weight: bold;
}

.cv-modal-footer {
    padding: 20px 30px;
    background: var(--light-gray);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.cv-modal-footer .btn {
    min-width: 140px;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(94, 53, 177, 0.1);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(94, 53, 177, 0.3);
}


.why-choose-us {
    background: var(--light-gray);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
}

.why-choose-us h3 {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 40px;
    font-weight: 600;
}

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

.advantage {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.advantage i {
    color: var(--secondary-teal);
    font-size: 1.5rem;
}

.advantage span {
    color: var(--medium-gray);
    font-weight: 500;
}

/* Portfolio Section */
.portfolio {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid var(--primary-purple);
    background: transparent;
    color: var(--primary-purple);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    position: relative;
    height: 250px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    color: var(--white);
    font-size: 3rem;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

/* Branding Showcase in Portfolio */
.branding-showcase {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
}

.branding-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(255, 152, 0, 0.2);
    font-family: var(--font-primary);
    letter-spacing: 3px;
    transform: rotate(-2deg);
    animation: brandingPulse 3s ease-in-out infinite;
}

@keyframes brandingPulse {
    0%, 100% {
        text-shadow: 2px 2px 4px rgba(255, 152, 0, 0.2);
    }
    50% {
        text-shadow: 2px 2px 8px rgba(255, 152, 0, 0.4), 0 0 15px rgba(255, 152, 0, 0.1);
    }
}

.branding-elements {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.branding-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-gray);
    font-style: italic;
    text-align: left;
    transition: var(--transition);
}

.branding-item:hover {
    color: var(--primary-purple);
    transform: translateX(5px);
}

.branding-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 1.2rem;
    color: var(--dark-gray);
    font-weight: bold;
    letter-spacing: 3px;
}

/* Social Media Strategy Showcase in Portfolio */
.social-media-strategy-showcase {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-yellow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
}

.strategy-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    transform: translateY(-10px);
    opacity: 0;
    animation: slideInUp 0.6s ease-out forwards;
    animation-delay: 0.2s;
}

.strategy-icon {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-right: 15px;
}

.strategy-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    font-family: var(--font-primary);
    letter-spacing: 1px;
}

.strategy-details {
    margin-bottom: 25px;
    transform: translateY(10px);
    opacity: 0;
    animation: slideInUp 0.6s ease-out forwards;
    animation-delay: 0.4s;
}

.strategy-details p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-weight: 500;
}

.strategy-progress {
    width: 80%;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-bar {
    width: 75%;
    height: 100%;
    background: var(--primary-purple);
    border-radius: 5px;
    animation: fillProgress 1.5s ease-out forwards;
}

.strategy-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.1);
    color: var(--dark-gray);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: translateX(10px);
    opacity: 0;
    animation: slideInRight 0.6s ease-out forwards;
    animation-delay: 0.6s;
}

@keyframes fillProgress {
    0% { width: 0; }
    100% { width: 75%; }
}

@keyframes slideInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Print Materials Showcase in Portfolio */
.print-materials-showcase {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    overflow: hidden;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    height: 100%;
    max-width: 280px;
    max-height: 280px;
}

.material-card {
    background: var(--black);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    animation: materialFadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.material-card:nth-child(1) { animation-delay: 0.1s; }
.material-card:nth-child(2) { animation-delay: 0.2s; }
.material-card:nth-child(3) { animation-delay: 0.3s; }
.material-card:nth-child(4) { animation-delay: 0.4s; }
.material-card:nth-child(5) { animation-delay: 0.5s; }
.material-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes materialFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Gold Bar */
.gold-bar {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--black);
    grid-column: 1 / 3;
    grid-row: 1;
}

.bar-content {
    text-align: center;
}

.bar-logo {
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.bar-weight {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.bar-purity {
    font-size: 0.6rem;
    font-weight: 500;
}

/* Brochure */
.brochure {
    background: var(--white);
    color: var(--black);
    grid-column: 3;
    grid-row: 1 / 3;
}

.brochure-header {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    text-align: center;
}

.brochure-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.money-notes {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 6px;
}

.register-text {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.qr-placeholder {
    width: 20px;
    height: 20px;
    background: var(--dark-gray);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.4rem;
    color: var(--white);
}

.brochure-footer {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    margin-top: 4px;
}

/* Business Card */
.business-card {
    background: var(--black);
    color: var(--accent-yellow);
    grid-column: 1;
    grid-row: 2;
}

.card-logo {
    font-size: 0.6rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-align: center;
}

.card-tagline {
    font-size: 0.5rem;
    font-weight: 600;
    margin-bottom: 2px;
    text-align: center;
}

.card-website {
    font-size: 0.4rem;
    color: var(--accent-yellow);
    text-align: center;
}

/* Pen */
.pen {
    background: var(--black);
    color: var(--accent-yellow);
    grid-column: 2;
    grid-row: 2;
    position: relative;
}

.pen-body {
    width: 20px;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 2px;
    margin-bottom: 2px;
}

.pen-clip {
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--accent-yellow);
}

/* Watch */
.watch {
    background: var(--black);
    color: var(--accent-yellow);
    grid-column: 1 / 3;
    grid-row: 3;
}

.watch-face {
    width: 30px;
    height: 30px;
    background: var(--black);
    border: 2px solid var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    position: relative;
}

.watch-logo {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--accent-yellow);
}

.watch-hands {
    position: absolute;
    width: 2px;
    height: 8px;
    background: var(--accent-yellow);
    border-radius: 1px;
    transform: rotate(45deg);
}

.watch-band {
    width: 25px;
    height: 3px;
    background: var(--accent-yellow);
    border-radius: 1px;
}

/* Flyer */
.flyer {
    background: var(--black);
    color: var(--accent-yellow);
    grid-column: 3;
    grid-row: 3;
    padding: 6px;
}

.flyer-title {
    font-size: 0.5rem;
    font-weight: 700;
    margin-bottom: 2px;
    text-align: center;
}

.flyer-subtitle {
    font-size: 0.4rem;
    font-weight: 600;
    margin-bottom: 2px;
    text-align: center;
}

.flyer-highlight {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 4px;
    text-align: center;
    background: rgba(255, 215, 0, 0.2);
    padding: 2px;
    border-radius: 2px;
}

.flyer-section {
    font-size: 0.4rem;
    margin-bottom: 1px;
    text-align: center;
}

.materials-tag {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent-yellow);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 600;
    animation: tagSlideIn 0.8s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
    transform: translateX(10px);
}

@keyframes tagSlideIn {
    0% {
        opacity: 0;
        transform: translateX(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Retail Branding Showcase in Portfolio */
.retail-branding-showcase {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F5F5DC;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    overflow: hidden;
}

.design-workspace {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 280px;
    max-height: 280px;
}

.color-palette-sheet {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: paletteFadeIn 0.8s ease-out forwards;
    opacity: 0;
    z-index: 10;
}

.palette-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    text-align: center;
    transform: rotate(180deg);
}

.palette-colors {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.color-swatch {
    width: 25px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.4rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.color-swatch.black {
    background: #000000;
}

.color-swatch.light-gray {
    background: #F5F5F5;
    color: var(--black);
}

.color-swatch.beige {
    background: #F5E6D3;
    color: var(--black);
}

.color-swatch.terracotta {
    background: #D2691E;
}

.color-cards {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    animation: cardsFadeIn 0.8s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.color-card {
    width: 20px;
    height: 15px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.3rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.color-card.mint {
    background: #A8E6CF;
    color: var(--black);
}

.color-card.medium-gray {
    background: #8B8B8B;
}

.color-card.white {
    background: #FFFFFF;
    color: var(--black);
    border: 1px solid #E0E0E0;
}

.color-card.light-gray-card {
    background: #F0F0F0;
    color: var(--black);
}

.color-card.burgundy {
    background: #8B0000;
}

.business-card {
    position: absolute;
    bottom: 60px;
    left: 30px;
    width: 40px;
    height: 25px;
    background: #F5E6D3;
    border-radius: 4px;
    padding: 5px;
    animation: businessCardFadeIn 0.8s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
    transform: rotate(-10deg);
}

.business-title {
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    transform: rotate(180deg);
}

.business-pattern {
    width: 100%;
    height: 8px;
    background: linear-gradient(45deg, #FFB366, #FF8C42);
    border-radius: 2px;
    margin-top: 3px;
}

.botanical-card {
    position: absolute;
    bottom: 80px;
    right: 40px;
    width: 35px;
    height: 25px;
    background: var(--white);
    border-radius: 4px;
    padding: 5px;
    animation: botanicalCardFadeIn 0.8s ease-out forwards;
    animation-delay: 0.9s;
    opacity: 0;
    transform: rotate(15deg);
}

.botanical-design {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #90EE90, #32CD32);
    border-radius: 2px;
    position: relative;
}

.botanical-design::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, #228B22, #006400);
    border-radius: 50%;
}

.botanical-design::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #32CD32, #228B22);
    border-radius: 50%;
}

.workspace-elements {
    position: absolute;
    top: 10px;
    right: 10px;
    animation: workspaceElementsFadeIn 0.8s ease-out forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

.vase {
    width: 15px;
    height: 20px;
    background: var(--white);
    border-radius: 8px 8px 0 0;
    margin-bottom: 5px;
    position: relative;
}

.vase::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 6px;
    background: radial-gradient(circle, #FFD700, #FFA500);
    border-radius: 50%;
}

.books {
    width: 12px;
    height: 15px;
    background: var(--white);
    border-radius: 2px;
    margin-bottom: 3px;
    box-shadow: 2px 0 0 #E0E0E0;
}

.cup {
    width: 10px;
    height: 12px;
    background: var(--white);
    border-radius: 0 0 5px 5px;
    position: relative;
}

.cup::before {
    content: '';
    position: absolute;
    top: 2px;
    right: -3px;
    width: 4px;
    height: 6px;
    background: var(--white);
    border-radius: 0 3px 3px 0;
}

.branding-tag {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent-yellow);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 600;
    animation: brandingTagSlideIn 0.8s ease-out forwards;
    animation-delay: 1.5s;
    opacity: 0;
    transform: translateX(10px);
}

@keyframes paletteFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(-5deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(-5deg) scale(1);
    }
}

@keyframes cardsFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes businessCardFadeIn {
    0% {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: rotate(-10deg) scale(1);
    }
}

@keyframes botanicalCardFadeIn {
    0% {
        opacity: 0;
        transform: rotate(15deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: rotate(15deg) scale(1);
    }
}

@keyframes workspaceElementsFadeIn {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes brandingTagSlideIn {
    0% {
        opacity: 0;
        transform: translateX(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}




.testimonials {
    text-align: center;
}

.testimonials h3 {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 40px;
    font-weight: 600;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.author-info h4 {
    color: var(--primary-purple);
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info span {
    color: var(--medium-gray);
}

/* Blog Section */
.blog {
    padding: var(--section-padding);
    background: var(--white);
}

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

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.blog-date {
    color: var(--secondary-teal);
    font-weight: 600;
}

.blog-category {
    color: var(--primary-purple);
    font-weight: 600;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-content p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-link {
    color: var(--secondary-teal);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--primary-purple);
}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    color: var(--primary-purple);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--secondary-teal);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--primary-purple);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-details p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.contact-details a {
    color: var(--secondary-teal);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-purple);
}

.contact-form-container {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(94, 53, 177, 0.2);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(94, 53, 177, 0.1);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 20px;
    color: var(--medium-gray);
    transition: var(--transition);
    pointer-events: none;
    background: var(--white);
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    left: 15px;
    font-size: 0.9rem;
    color: var(--primary-purple);
}

.contact-map {
    margin-top: 40px;
}

.map-container {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    min-height: 450px;
    border: none;
    display: block;
}

.map-info {
    padding: 30px;
    background: var(--light-gray);
    text-align: center;
}

.map-info h4 {
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem;
}

.map-info p {
    color: var(--medium-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.map-info .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.map-info .btn i {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
}

.footer-logo span {
    color: var(--secondary-teal);
    font-size: 0.9rem;
}

.footer-logo p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--secondary-teal);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--medium-gray);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(94, 53, 177, 0.3);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .mission-vision-values {
        grid-template-columns: 1fr;
    }

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

    .portfolio-filters {
        justify-content: center;
    }

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

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-graphic {
        width: 300px;
        height: 300px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

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

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

    /* CV Responsive */
    .cv-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .cv-actions {
        flex-direction: row;
        justify-content: center;
    }

    .cv-stats {
        justify-content: center;
    }

    .cv-modal-content {
        width: 95%;
        margin: 20px;
    }

    .cv-modal-footer {
        flex-direction: column;
    }

    .cv-modal-footer .btn {
        min-width: auto;
        width: 100%;
    }

    /* Map Responsive */
    .map-info {
        padding: 20px;
    }

    .map-container iframe {
        height: 300px;
    }

    /* Branding Showcase Responsive */
    .branding-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .branding-showcase {
        padding: 25px 15px;
    }

    .branding-elements {
        gap: 8px;
        margin-bottom: 15px;
    }

    .branding-item {
        font-size: 0.8rem;
    }

    .branding-dots {
        bottom: 15px;
        right: 15px;
        font-size: 1rem;
    }

    /* Social Media Strategy Responsive */
    .social-media-strategy-showcase {
        padding: 20px 15px;
    }

    .strategy-icon {
        font-size: 2rem;
        margin-right: 10px;
    }

    .strategy-title {
        font-size: 1.8rem;
    }

    .strategy-details p {
        font-size: 1rem;
    }

    .strategy-progress {
        width: 85%;
        height: 6px;
    }

    .strategy-tag {
        bottom: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    /* Print Materials Responsive */
    .materials-grid {
        max-width: 240px;
        max-height: 240px;
        gap: 6px;
    }

    .material-card {
        padding: 6px;
    }

    .bar-logo {
        font-size: 0.6rem;
    }

    .bar-weight {
        font-size: 0.8rem;
    }

    .bar-purity {
        font-size: 0.5rem;
    }

    .brochure-header {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }

    .money-notes {
        font-size: 0.6rem;
    }

    .register-text {
        font-size: 0.5rem;
    }

    .qr-placeholder {
        width: 16px;
        height: 16px;
        font-size: 0.3rem;
    }

    .brochure-footer {
        font-size: 0.5rem;
    }

    .card-logo {
        font-size: 0.5rem;
    }

    .card-tagline {
        font-size: 0.4rem;
    }

    .card-website {
        font-size: 0.35rem;
    }

    .pen-body {
        width: 16px;
        height: 3px;
    }

    .pen-clip {
        font-size: 0.4rem;
    }

    .watch-face {
        width: 24px;
        height: 24px;
    }

    .watch-logo {
        font-size: 0.4rem;
    }

    .watch-hands {
        width: 1px;
        height: 6px;
    }

    .watch-band {
        width: 20px;
        height: 2px;
    }

    .flyer-title {
        font-size: 0.4rem;
    }

    .flyer-subtitle {
        font-size: 0.35rem;
    }

    .flyer-highlight {
        font-size: 0.4rem;
    }

    .flyer-section {
        font-size: 0.35rem;
    }

    .materials-tag {
        bottom: 6px;
        right: 6px;
        padding: 3px 6px;
        font-size: 0.5rem;
    }

    /* Retail Branding Responsive */
    .design-workspace {
        max-width: 240px;
        max-height: 240px;
    }

    .color-palette-sheet {
        padding: 12px;
    }

    .palette-title {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .palette-colors {
        gap: 6px;
    }

    .color-swatch {
        width: 20px;
        height: 16px;
        font-size: 0.35rem;
    }

    .color-cards {
        top: 15px;
        left: 15px;
        gap: 6px;
    }

    .color-card {
        width: 16px;
        height: 12px;
        font-size: 0.25rem;
    }

    .business-card {
        bottom: 50px;
        left: 25px;
        width: 32px;
        height: 20px;
        padding: 4px;
    }

    .business-title {
        font-size: 0.4rem;
    }

    .business-pattern {
        height: 6px;
        margin-top: 2px;
    }

    .botanical-card {
        bottom: 65px;
        right: 30px;
        width: 28px;
        height: 20px;
        padding: 4px;
    }

    .botanical-design::before {
        width: 12px;
        height: 12px;
    }

    .botanical-design::after {
        width: 6px;
        height: 6px;
    }

    .vase {
        width: 12px;
        height: 16px;
        margin-bottom: 4px;
    }

    .vase::after {
        width: 6px;
        height: 5px;
    }

    .books {
        width: 10px;
        height: 12px;
        margin-bottom: 2px;
    }

    .cup {
        width: 8px;
        height: 10px;
    }

    .cup::before {
        width: 3px;
        height: 5px;
    }

    .branding-tag {
        bottom: 6px;
        right: 6px;
        padding: 3px 6px;
        font-size: 0.5rem;
    }

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-card,
    .access-card,
    .mvv-card {
        padding: 30px 20px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

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

/* Loading animation for numbers */
.stat-number {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-image img {
    width: 100%;
    height: auto;
    object-fit: cover; /* recorta la imagen sin deformarla */
    border-radius: 8px; /* esquinas redondeadas, opcional */
}

.author-avatar img {
    width: 80px;        /* tamaño de la imagen */
    height: 80px;       /* altura igual al ancho */
    object-fit: cover;  /* recorta la foto sin deformarla */
    border-radius: 50%; /* hace que sea un círculo */
    border: 3px solid var(--primary-purple);
    box-shadow: 0 4px 15px rgba(102, 51, 153, 0.3);
    transition: all 0.3s ease;
}

.author-avatar img:hover {
    transform: scale(1.1);
    border-color: var(--accent-orange);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Fallback para cuando no hay imagen */
.author-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    border: 3px solid var(--primary-purple);
    box-shadow: 0 4px 15px rgba(102, 51, 153, 0.3);
}

/* Estilos para el sistema de testimonios mejorado */
.testimonials {
    text-align: center;
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h3 {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 50px;
    font-weight: 700;
}

.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-slider {
    display: flex;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 300px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: var(--white);
    transition: all 0.5s ease-in-out;
    opacity: 0;
    transform: translateX(100%);
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    margin-bottom: 30px;
    text-align: center;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    position: relative;
    margin: 0;
    padding: 20px;
    background: rgba(102, 51, 153, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-purple);
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-orange);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-content p::after {
    content: '"';
    font-size: 3rem;
    color: var(--accent-orange);
    position: absolute;
    bottom: -40px;
    right: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-info h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-purple);
    font-weight: 600;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

/* Controles de navegación */
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-btn {
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 51, 153, 0.3);
}

.testimonial-btn:hover {
    background: var(--accent-orange);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.testimonial-btn:active {
    transform: scale(0.95);
}

/* Indicadores de puntos */
.testimonials-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-purple);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--accent-orange);
    transform: scale(1.1);
}

/* Animaciones */
@keyframes fadeInTestimonial {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial.active {
    animation: fadeInTestimonial 0.5s ease-in-out;
}

/* Asegurar que los testimonios se vean */
.testimonial {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial.active {
    display: flex !important;
}

/* Responsive para testimonios */
@media (max-width: 768px) {
    .testimonial {
        padding: 30px 20px;
        min-height: 300px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        padding: 15px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .testimonial-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonials-controls {
        gap: 15px;
        margin-top: 20px;
    }
    
    .testimonials-slider {
        height: 350px;
    }
}
