/* Fontes */
@font-face {
    font-family: 'Pacifico';
    src: url('fonts/Pacifico-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset e Variáveis - Esquema de cores do app BeachFy (Roxo/Ultravioleta) */
:root {
    --primary-color: #8790e5;        /* Roxo vibrante principal */
    --primary-light: #9fb0e0;        /* Roxo claro */
    --primary-dark: #7C3AED;         /* Roxo escuro */
    --primary-ultraviolet: #3D3066;  /* Ultravioleta */
    --secondary-color: #EC4899;      /* Rosa vibrante */
    --secondary-light: #F472B6;      /* Rosa claro */
    --secondary-dark: #DB2777;        /* Rosa escuro */
    --accent-color: #8B5CF6;         /* Roxo para acentos */
    --bg-primary: #1E1B3C;           /* Roxo escuro mais claro */
    --bg-secondary: #2D2550;         /* Roxo médio */
    --bg-tertiary: #3D3066;          /* Roxo médio-claro */
    --bg-card: #3D2D5F;              /* Roxo claro para cards */
    --bg-light: #F5F5F5;             /* Background claro */
    --bg-white: #FFFFFF;             /* Branco */
    --text-primary: #FFFFFF;         /* Branco puro */
    --text-secondary: #E5E7EB;       /* Cinza bem claro */
    --text-tertiary: #9CA3AF;        /* Cinza médio */
    --text-dark: #444444;            /* Texto escuro */
    --text-light: #666666;           /* Texto cinza */
    --border-color: #E5E7EB;         /* Borda sutil */
    --border-focus: #898fe3;         /* Borda em foco (roxo) */
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav__logo h1 {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: normal;
    margin: 0;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav__menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav__menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transition: width 0.3s;
}

.nav__menu a:hover {
    color: var(--primary-color);
}

.nav__menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::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"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero__content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero__titlelogo {
    font-family: 'Pacifico', cursive;
    font-size: 4.5rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hero__subtitle {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero__description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero__buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.store-badge {
    height: 60px;
    width: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-primary);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section--alt {
    background: var(--bg-light);
}

.section--cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.section--cta .section__title,
.section--cta .section__description {
    color: white;
}

.section__title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section__description {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    font-weight: 400;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(135, 144, 229, 0.2);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(135, 144, 229, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover .feature-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(135, 144, 229, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    gap: 2.5rem;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(135, 144, 229, 0.15);
}

.feature-item__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(135, 144, 229, 0.3);
    transition: transform 0.3s;
}

.feature-item:hover .feature-item__icon {
    transform: scale(1.05);
}

.feature-item__content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.feature-item__content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Community Features */
.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.community-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transition: width 0.3s;
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.community-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.community-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(135, 144, 229, 0.3);
}

.community-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.community-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Privacy Page */
.privacy-section {
    padding: 3rem 0 5rem;
    background: var(--bg-light);
    min-height: calc(100vh - 200px);
}

.privacy-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-align: center;
}

.privacy-updated {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.privacy-content {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section-item {
    margin-bottom: 3rem;
}

.privacy-section-item:last-child {
    margin-bottom: 0;
}

.privacy-section-item h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.privacy-section-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.privacy-section-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-section-item ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.privacy-section-item li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.privacy-section-item strong {
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__section h3,
.footer__section h4 {
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.footer__section ul {
    list-style: none;
}

.footer__section ul li {
    margin-bottom: 0.5rem;
}

.footer__section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer__section a:hover {
    color: var(--primary-light);
}

.footer__section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .nav__menu {
        flex-direction: column;
        gap: 1rem;
        display: none;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__titlelogo {
        font-size: 3rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .section__title {
        font-size: 2rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .privacy-content {
        padding: 1.5rem;
    }

    .privacy-title {
        font-size: 2rem;
    }

    .store-badge {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__titlelogo {
        font-size: 2.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .features-grid,
    .community-features {
        grid-template-columns: 1fr;
    }
}

