/*
Theme Name: Eazzy
Theme URI: https://eazzy.com
Description: Tema premium personalizado para Eazzy con identidad corporativa elegante
Author: Eazzy Team
Author URI: https://eazzy.com
Template: twentytwentyfive
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eazzy
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --eazzy-purple: #5B5A87;
    --eazzy-purple-dark: #484770;
    --eazzy-purple-light: #6d6b9e;
    --eazzy-orange: #E74C3C;
    --eazzy-orange-dark: #c44133;
    --eazzy-orange-light: #f06a5e;
    --eazzy-black: #1a1a1a;
    --eazzy-white: #ffffff;
    --eazzy-gray-light: #f8f9fa;
    --eazzy-gray-medium: #e9ecef;
    --eazzy-gray: #6c757d;
    --eazzy-gray-dark: #495057;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--eazzy-black);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--eazzy-white);
}

/* Header Styles */
.site-header {
    background: var(--eazzy-white);
    border-bottom: 1px solid var(--eazzy-gray-medium);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.site-logo,
.custom-logo {
    max-width: 180px;
    height: auto;
    transition: var(--transition);
}

.site-logo:hover,
.custom-logo:hover {
    transform: scale(1.02);
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-navigation a {
    color: var(--eazzy-gray-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.01em;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--eazzy-purple), var(--eazzy-orange));
    transition: var(--transition);
}

.main-navigation a:hover {
    color: var(--eazzy-purple);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Buttons */
.btn-primary,
.wp-block-button__link,
button[type="submit"] {
    background: linear-gradient(135deg, var(--eazzy-orange) 0%, var(--eazzy-orange-dark) 100%);
    color: var(--eazzy-white);
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(231, 76, 60, 0.25);
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover,
.wp-block-button__link:hover,
button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.35);
}

.btn-primary:active,
button[type="submit"]:active {
    transform: translateY(0);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--eazzy-purple) 0%, var(--eazzy-purple-dark) 100%);
    color: var(--eazzy-white);
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(91, 90, 135, 0.25);
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 90, 135, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--eazzy-purple);
    border: 2px solid var(--eazzy-purple);
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;
}

.btn-outline:hover {
    background: var(--eazzy-purple);
    color: var(--eazzy-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 90, 135, 0.25);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--eazzy-black);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    font-weight: 800;
}

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

h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    font-weight: 600;
}

/* Links */
a {
    color: var(--eazzy-orange);
    transition: var(--transition);
    text-decoration: none;
}

a:hover {
    color: var(--eazzy-purple);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--eazzy-gray-medium);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
    background: var(--eazzy-white);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--eazzy-purple);
    box-shadow: 0 0 0 4px rgba(91, 90, 135, 0.1);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--eazzy-gray-dark);
    font-size: 14px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.content-wrapper {
    padding: 80px 24px;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--eazzy-purple-dark) 0%, var(--eazzy-purple) 100%);
    color: var(--eazzy-white);
    padding: 60px 0 30px;
    margin-top: 100px;
}

.site-footer a {
    color: var(--eazzy-white);
    opacity: 0.9;
}

.site-footer a:hover {
    opacity: 1;
    color: var(--eazzy-orange-light);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--eazzy-purple) 0%, var(--eazzy-purple-dark) 50%, var(--eazzy-orange) 100%);
    color: var(--eazzy-white);
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    color: var(--eazzy-white);
    font-size: 4rem;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out;
}

.hero-section p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-logo {
    max-width: 300px;
    margin-bottom: 40px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

/* Card Styles */
.card {
    background: var(--eazzy-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    border: 1px solid var(--eazzy-gray-medium);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card h3 {
    color: var(--eazzy-purple);
    margin-bottom: 16px;
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: var(--eazzy-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--eazzy-gray-medium);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--eazzy-purple), var(--eazzy-orange));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

/* Alert Messages */
.alert {
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    border-left: 4px solid;
    font-size: 15px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #17a2b8;
    color: #0c5460;
}

/* Delete Account Form */
.delete-account-form {
    max-width: 650px;
    margin: 0 auto;
}

.delete-account-warning {
    background: linear-gradient(135deg, #fff8f0 0%, #fff3e0 100%);
    border: 2px solid var(--eazzy-orange);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

.delete-account-warning h3 {
    color: var(--eazzy-orange);
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.delete-account-warning ul {
    margin: 16px 0;
    padding-left: 24px;
}

.delete-account-warning li {
    margin-bottom: 8px;
    color: var(--eazzy-gray-dark);
}

/* Privacy Policy */
.privacy-policy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.privacy-policy-content h2 {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--eazzy-gray-medium);
    color: var(--eazzy-purple);
}

.privacy-policy-content h2:first-of-type {
    border-top: none;
    margin-top: 0;
}

.privacy-policy-content h3 {
    color: var(--eazzy-orange);
    margin-top: 24px;
}

.privacy-policy-content ul {
    margin: 20px 0;
    padding-left: 28px;
}

.privacy-policy-content li {
    margin-bottom: 12px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--eazzy-gray-light) 0%, var(--eazzy-gray-medium) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
    box-shadow: var(--shadow-md);
}

.cta-section h2 {
    color: var(--eazzy-purple);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.15rem;
    color: var(--eazzy-gray-dark);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

/* Section Spacing */
section {
    margin-bottom: 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--eazzy-purple);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 80px 24px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .hero-logo {
        max-width: 200px;
        margin-bottom: 30px;
    }

    .card {
        padding: 28px;
    }

    .service-card {
        padding: 28px;
    }

    .cta-section {
        padding: 40px 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .content-wrapper {
        padding: 50px 24px;
    }
}

/* Checkbox Styling */
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--eazzy-purple);
    cursor: pointer;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--eazzy-gray-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--eazzy-purple), var(--eazzy-orange));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--eazzy-purple-dark), var(--eazzy-orange-dark));
}
